Class SoapFaultException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.aquima.interactions.foundation.exception.AppException
com.aquima.interactions.foundation.connectivity.impl.SoapFaultException
- All Implemented Interfaces:
Serializable
Exception containing a SOAP fault and its information.
- Since:
- 6.0.1
- Author:
- Jon van Leuven
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSoapFaultException
(InputStream soapResponse, String soapRequest) For internal use only, made public for .NET test cases. -
Method Summary
Modifier and TypeMethodDescriptionThis method returns the SOAP fault detail.This method returns the SOAP fault actor.This method returns the SOAP fault code.This method returns the SOAP fault string.This method returns the soap request that caused this exception.This method returns the soap response that caused this exception.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SoapFaultException
public SoapFaultException(InputStream soapResponse, String soapRequest) throws XmlException, IOException For internal use only, made public for .NET test cases. Do not use!- Parameters:
soapResponse
- The soap envelope response, may not be null.soapRequest
- The soap request, may be null.- Throws:
XmlException
- Is thrown when parsing failed extract the soap fault.IOException
-
-
Method Details
-
getFaultCode
This method returns the SOAP fault code.- Returns:
- Code (may be null)
-
getFaultString
This method returns the SOAP fault string.- Returns:
- String (may be null)
-
getFaultActor
This method returns the SOAP fault actor.- Returns:
- Actor (may be null)
-
getDetail
This method returns the SOAP fault detail. Xml in the detail message will be ignored.- Returns:
- Detail (may be null)
-
getSoapRequest
This method returns the soap request that caused this exception.- Returns:
- The complete soap request that caused this exception, may be null.
-
getSoapResponse
This method returns the soap response that caused this exception.- Returns:
- The complete soap response that caused this exception, never null.
-
getMessage
- Overrides:
getMessage
in classThrowable
-