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 SummaryConstructorsConstructorDescriptionWsClientException(String message) Exception without an underlying cause.WsClientException(String message, Throwable cause) Exception caused by another exception.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
WsClientExceptionException without an underlying cause.- Parameters:
- message- descriptive message of what happened
 
- 
WsClientExceptionException caused by another exception.- Parameters:
- message- descriptive message
- cause- underlying cause
 
 
-