Class SessionException



  • public class SessionException
    extends java.lang.Exception
    A SessionException represents a general exception type reporting problems occurring on a websocket session.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      SessionException​(java.lang.String message, java.lang.Throwable cause, Session session)
      Creates a new instance of this exception with the given message, the wrapped cause of the exception and the session with which the problem is associated.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Session getSession​()
      Return the Session on which the problem occurred.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
    • Constructor Detail

      • SessionException

        public SessionException​(java.lang.String message,
                                java.lang.Throwable cause,
                                Session session)
        Creates a new instance of this exception with the given message, the wrapped cause of the exception and the session with which the problem is associated.
        Parameters:
        message - a description of the problem
        cause - the error that caused the problem
        session - the session on which the problem occurred.
    • Method Detail

      • getSession

        public Session getSession​()
        Return the Session on which the problem occurred.
        Returns:
        the session