Package javax.websocket
Class SessionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.websocket.SessionException
- All Implemented Interfaces:
java.io.Serializable
public class SessionException
extends java.lang.Exception
A SessionException represents a general exception type reporting problems occurring on a websocket session.
- Author:
- dannycoward
- 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
Modifier and Type Method Description SessiongetSession()Return the Session on which the problem occurred.
-
Constructor Details
-
SessionException
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 problemcause- the error that caused the problemsession- the session on which the problem occurred.
-
-
Method Details
-
getSession
Return the Session on which the problem occurred.- Returns:
- the session
-