Package jakarta.websocket
Class SessionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.websocket.SessionException
- All Implemented Interfaces:
- Serializable
A SessionException represents a general exception type reporting problems occurring on a websocket session.
- Author:
- dannycoward
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionSessionException(String message, 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 SummaryModifier and TypeMethodDescriptionReturn the Session on which the problem occurred.Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
SessionExceptionCreates 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 Details- 
getSessionReturn the Session on which the problem occurred.- Returns:
- the session
 
 
-