Class SessionStorageException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.sourceid.saml20.service.session.data.SessionStorageException
- All Implemented Interfaces:
Serializable
An exception thrown when an error occurs while reading persistent authentication session data from storage
or while writing data to storage.
- Since:
- 10.3
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSessionStorageException(String message) Create a SessionStorageException with the specified message.SessionStorageException(String message, Throwable cause) Create a SessionStorageException with the specified message and cause.SessionStorageException(Throwable cause) Create a SessionStorageException with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SessionStorageException
Create a SessionStorageException with the specified message.- Parameters:
message- The message for the exception.
-
SessionStorageException
Create a SessionStorageException with the specified cause.- Parameters:
cause- The cause of the exception.
-
SessionStorageException
Create a SessionStorageException with the specified message and cause.- Parameters:
message- The message for the exception.cause- The cause of the exception.
-