Package io.helidon.webclient.websocket
Class WsClientException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.webclient.websocket.WsClientException
- All Implemented Interfaces:
 Serializable
A WebSocket client exception.
- See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionWsClientException(String message) Exception without an underlying cause.WsClientException(String message, Throwable cause) Exception caused by another exception. - 
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
WsClientException
Exception without an underlying cause.- Parameters:
 message- descriptive message of what happened
 - 
WsClientException
Exception caused by another exception.- Parameters:
 message- descriptive messagecause- underlying cause
 
 -