Class ExpiredSessionException

  • All Implemented Interfaces:

    public class ExpiredSessionException
    extends StoppedSessionException
    A special case of a StoppedSessionException. An expired session is a session that has stopped explicitly due to inactivity (i.e. time-out), as opposed to stopping due to log-out or other reason.
    Since:
    0.1
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ExpiredSessionException()
      Creates a new ExpiredSessionException.
       message)
      Constructs a new ExpiredSessionException.
       message,  cause)
      Constructs a new ExpiredSessionException.
       cause)
      Constructs a new ExpiredSessionException.
    • Method Summary

      • Methods inherited from class java.lang.

        , , , , , , , , , , , ,
      • Methods inherited from class java.lang.

        , , , , , , , , ,
    • Constructor Detail

      • ExpiredSessionException

        public ExpiredSessionException()
        Creates a new ExpiredSessionException.
      • ExpiredSessionException

        public ExpiredSessionException​( message)
        Constructs a new ExpiredSessionException.
        Parameters:
        message - the reason for the exception
      • ExpiredSessionException

        public ExpiredSessionException​( cause)
        Constructs a new ExpiredSessionException.
        Parameters:
        cause - the underlying Throwable that caused this exception to be thrown.
      • ExpiredSessionException

        public ExpiredSessionException​( message,
                                        cause)
        Constructs a new ExpiredSessionException.
        Parameters:
        message - the reason for the exception
        cause - the underlying Throwable that caused this exception to be thrown.