Package com.onelogin.saml2.exception
Class SAMLException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.onelogin.saml2.exception.SAMLException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
Error,SettingsException,ValidationError,XMLEntityException
public class SAMLException extends java.lang.ExceptionTop-level exception class for the OneLogin SAML client.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description SAMLException(java.lang.String message)Construct a SAMLException with the provided error message.SAMLException(java.lang.String message, java.lang.Throwable cause)Construct a SAMLException with the provided human-readable error message and upstream cause.SAMLException(java.lang.Throwable cause)Construct a SAMLException with the provided cause for the exception.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SAMLException
public SAMLException(java.lang.String message)
Construct a SAMLException with the provided error message.- Parameters:
message- The human-readable error message associated with this exception.
-
SAMLException
public SAMLException(java.lang.Throwable cause)
Construct a SAMLException with the provided cause for the exception.- Parameters:
cause- The upstream cause of this exception.
-
SAMLException
public SAMLException(java.lang.String message, java.lang.Throwable cause)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.
-
-