java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.saml2.core.exception.SAMLException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SAMLSevereException,SAMLSignatureException,SettingsException,ValidationException,X509CertificateException,XMLParsingException
Top-level exception class for the SAML client.
- See Also:
-
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
-
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.
-