java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalStateException
io.helidon.webserver.SocketClosedException
- All Implemented Interfaces:
Serializable
Signals that socket was closed before server request it. There can be unsent response data.
The exception should be distributed in server response completion stage
which
completes exceptionally
in such case.
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates new instance.SocketClosedException
(String message, Throwable cause) Creates new instance.SocketClosedException
(Throwable cause) Creates new instance. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SocketClosedException
Creates new instance.- Parameters:
s
- a detail message
-
SocketClosedException
Creates new instance.- Parameters:
message
- a detail messagecause
- an original cause
-
SocketClosedException
Creates new instance.- Parameters:
cause
- an original cause
-