Class UnknownSessionException

  • All Implemented Interfaces:

    public class UnknownSessionException
    extends InvalidSessionException
    Exception thrown when attempting to interact with the system under the pretense of a particular session (e.g. under a specific session id), and that session does not exist in the system.
    Since:
    0.1
    See Also:
    Serialized Form
    • Constructor Summary

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

      • Methods inherited from class java.lang.

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

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

      • UnknownSessionException

        public UnknownSessionException()
        Creates a new UnknownSessionException.
      • UnknownSessionException

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

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

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