Package org.opensaml.soap.client
Class SOAPFaultException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.opensaml.soap.common.SOAPException
-
- org.opensaml.soap.client.SOAPFaultException
-
- All Implemented Interfaces:
Serializable
public class SOAPFaultException extends SOAPException
Exception indicating a SOAP fault.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUIDSerial version UID.private FaultsoapFaultThe fault that caused this exception.
-
Constructor Summary
Constructors Constructor Description SOAPFaultException()Constructor.SOAPFaultException(Exception wrappedException)Constructor.SOAPFaultException(String message)Constructor.SOAPFaultException(String message, Exception wrappedException)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FaultgetFault()Gets the fault that caused the exception.voidsetFault(Fault fault)Sets the fault that caused the exception.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial version UID.- See Also:
- Constant Field Values
-
soapFault
@Nullable private Fault soapFault
The fault that caused this exception.
-
-
Constructor Detail
-
SOAPFaultException
public SOAPFaultException()
Constructor.
-
SOAPFaultException
public SOAPFaultException(@Nullable String message)Constructor.- Parameters:
message- exception message
-
SOAPFaultException
public SOAPFaultException(@Nullable Exception wrappedException)Constructor.- Parameters:
wrappedException- exception to be wrapped by this one
-
-