java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.http.HttpException
io.helidon.http.InternalServerException
- All Implemented Interfaces:
Serializable
A runtime exception indicating a
internal server error
.- See Also:
-
Constructor Summary
ConstructorDescriptionInternalServerException
(String message, Throwable cause) CreatesInternalServerException
.InternalServerException
(String message, Throwable cause, boolean keepAlive) CreatesInternalServerException
. -
Method Summary
Methods inherited from class io.helidon.http.HttpException
header, headers, keepAlive, status
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InternalServerException
CreatesInternalServerException
.- Parameters:
message
- the messagecause
- the cause of this exception
-
InternalServerException
CreatesInternalServerException
.- Parameters:
message
- the messagecause
- the cause of this exceptionkeepAlive
- whether to keep the connection alive (if keep alives are enabled)
-