java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.webserver.CloseConnectionException
io.helidon.webserver.ServerConnectionException
- All Implemented Interfaces:
Serializable
An exception that was caused by server communication error (on the original client call).
This exception must bubble up through the error handling chain, as otherwise we would treat it as an internal exception, and may end up logging too much information.
- See Also:
-
Constructor Summary
ConstructorDescriptionServerConnectionException
(String message, Throwable cause) Server connection exception based on a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ServerConnectionException
Server connection exception based on a cause.- Parameters:
message
- descriptive messagecause
- cause of this exception
-