Package com.onelogin.saml2.exception
Class SAMLException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.onelogin.saml2.exception.SAMLException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
Error,SettingsException,ValidationError,XMLEntityException
Top-level exception class for the OneLogin SAML client.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionSAMLException(String message) Construct a SAMLException with the provided error message.SAMLException(String message, Throwable cause) Construct a SAMLException with the provided human-readable error message and upstream cause.SAMLException(Throwable cause) Construct a SAMLException with the provided cause for the exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
SAMLException
Construct a SAMLException with the provided error message.- Parameters:
message- The human-readable error message associated with this exception.
-
SAMLException
Construct a SAMLException with the provided cause for the exception.- Parameters:
cause- The upstream cause of this exception.
-
SAMLException
Construct a SAMLException with the provided human-readable error message and upstream cause.- Parameters:
message- The human-readable error message associated with this exception.cause- The upstream cause associated with this exception.
-