Package com.mendix.integration
Class WebserviceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.mendix.integration.WebserviceException
-
- All Implemented Interfaces:
java.io.Serializable
public class WebserviceException extends java.lang.Exception
An exception that can be thrown by webservices published by the Mendix application and webservice calls by the Mendix application. This exception can be thrown in custom java actions handling a published webservice call to show a custom soap fault. In the constructor, use the public field clientFaultCode or serverFaultCode to indicate a client or server error.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
clientFaultCode
static java.lang.String
serverFaultCode
-
Constructor Summary
Constructors Constructor Description WebserviceException(java.lang.String faultCode, java.lang.String faultString)
Creates a new WebserviceException.WebserviceException(java.lang.String faultCode, java.lang.String faultString, java.lang.Throwable cause)
Creates a new WebserviceException.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDetail()
Gets the detail.java.lang.String
getFaultActor()
Gets the fault actor.java.lang.String
getFaultCode()
Gets the fault code.java.lang.String
getFaultString()
Gets the fault string.void
setDetail(java.lang.String detail)
Sets the detail.void
setFaultActor(java.lang.String faultActor)
Sets the fault actor.
-
-
-
Field Detail
-
clientFaultCode
public static final java.lang.String clientFaultCode
- See Also:
- Constant Field Values
-
serverFaultCode
public static final java.lang.String serverFaultCode
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
WebserviceException
public WebserviceException(java.lang.String faultCode, java.lang.String faultString)
Creates a new WebserviceException.- Parameters:
faultCode
- the fault codefaultString
- the fault string
-
WebserviceException
public WebserviceException(java.lang.String faultCode, java.lang.String faultString, java.lang.Throwable cause)
Creates a new WebserviceException.- Parameters:
faultCode
- the fault codefaultString
- the fault stringcause
- the cause
-
-
Method Detail
-
getFaultCode
public final java.lang.String getFaultCode()
Gets the fault code.- Returns:
- the faultCode
-
getFaultString
public final java.lang.String getFaultString()
Gets the fault string.- Returns:
- the faultString
-
getFaultActor
public java.lang.String getFaultActor()
Gets the fault actor.- Returns:
- the fault actor
-
setFaultActor
public void setFaultActor(java.lang.String faultActor)
Sets the fault actor.- Parameters:
faultActor
- the fault actor to set
-
getDetail
public java.lang.String getDetail()
Gets the detail.- Returns:
- the detail
-
setDetail
public void setDetail(java.lang.String detail)
Sets the detail.- Parameters:
detail
- the detail to set
-
-