Package com.iizix.nio
Class WebSocketException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.iizix.nio.WebSocketException
- All Implemented Interfaces:
Serializable
The WebSocketException class.
- Author:
- Christopher Mindus
- See Also:
Constructor Summary
ConstructorDescriptionWebSocketException
(String message) Creates a web socket exception with a message.WebSocketException
(String message, Throwable cause) Creates a web socket exception with a message.Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Constructor Details
WebSocketException
Creates a web socket exception with a message.- Parameters:
message
- The message of the exception.
WebSocketException
Creates a web socket exception with a message.- Parameters:
message
- The message of the exception.cause
- The cause is the throwable that caused this exception to get thrown.