java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.inverno.mod.http.server.HttpServerException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ResetStreamException
Base exception class used to report HTTP server errors.
- Since:
- 1.9
- Author:
- Jeremy Kuhn
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates an HTTP server exception.HttpServerException
(String message) Creates a HTTP server exception.HttpServerException
(String message, Throwable cause) Creates a HTTP server exception.HttpServerException
(Throwable cause) Creates a HTTP server 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
-
HttpServerException
public HttpServerException()Creates an HTTP server exception.
-
HttpServerException
Creates a HTTP server exception.
- Parameters:
message
- the message
-
HttpServerException
Creates a HTTP server exception.
- Parameters:
message
- the messagecause
- the cause
-
HttpServerException
Creates a HTTP server exception.
- Parameters:
cause
- the cause
-