Class SessionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.shiro.lang.ShiroException
org.apache.shiro.session.SessionException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DisabledSessionException,InvalidSessionException
General security exception attributed to problems during interaction with the system during
a session.
- Since:
- 0.1
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new SessionException.SessionException(String message) Constructs a new SessionException.SessionException(String message, Throwable cause) Constructs a new SessionException.SessionException(Throwable cause) Constructs a new SessionException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SessionException
public SessionException()Creates a new SessionException. -
SessionException
Constructs a new SessionException.- Parameters:
message- the reason for the exception
-
SessionException
Constructs a new SessionException.- Parameters:
cause- the underlying Throwable that caused this exception to be thrown.
-
SessionException
Constructs a new SessionException.- Parameters:
message- the reason for the exceptioncause- the underlying Throwable that caused this exception to be thrown.
-