Class SessionStorageException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.sourceid.saml20.service.session.data.SessionStorageException
-
- All Implemented Interfaces:
Serializable
public class SessionStorageException extends Exception
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SessionStorageException(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 Detail
-
SessionStorageException
public SessionStorageException(String message)
Create a SessionStorageException with the specified message.- Parameters:
message- The message for the exception.
-
SessionStorageException
public SessionStorageException(Throwable cause)
Create a SessionStorageException with the specified cause.- Parameters:
cause- The cause of the exception.
-
-