Class SessionException

All Implemented Interfaces:
Serializable

public class SessionException extends RuntimeException
SessionException is a runtime exception class that is used to indicate an error or exceptional condition that occurs during session handling.
See Also:
  • Constructor Details

    • SessionException

      public SessionException()
      Constructs a new SessionException with no detail message.
    • SessionException

      public SessionException(String message)
      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

      public SessionException(String message, Throwable cause)
      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

      public SessionException(Throwable cause)
      Constructs a new SessionException with the specified cause.
      Parameters:
      cause - the cause (which is saved for later retrieval by the getCause() method)