java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
one.jpro.platform.session.SessionException
- All Implemented Interfaces:
Serializable
SessionException is a runtime exception class that is used to indicate an error or exceptional condition
that occurs during session handling.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new SessionException with no detail message.SessionException(String message) Constructs a new SessionException with the specified detail message.SessionException(String message, Throwable cause) Constructs a new SessionException with the specified detail message and cause.SessionException(Throwable cause) Constructs a new SessionException 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
-
SessionException
public SessionException()Constructs a new SessionException with no detail message. -
SessionException
Constructs a new SessionException with the specified detail message.- Parameters:
message- the detail message (which is saved for later retrieval by the getMessage() method)
-
SessionException
Constructs a new SessionException with the specified detail message and cause.- Parameters:
message- the detail message (which is saved for later retrieval by the getMessage() method)cause- the cause (which is saved for later retrieval by the getCause() method)
-
SessionException
Constructs a new SessionException with the specified cause.- Parameters:
cause- the cause (which is saved for later retrieval by the getCause() method)
-