java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.inverno.mod.http.base.HttpException
io.inverno.mod.http.base.NotFoundException
- All Implemented Interfaces:
Serializable
A HTTP exception that indicates that a resource was Not Found (404)
on the server.
- Since:
- 1.0
- Author:
- Jeremy Kuhn
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates a not found exception.NotFoundException
(String message) Creates a not found exception with the specified message.NotFoundException
(String message, Throwable cause) Creates a not found exception with the specified message and cause.NotFoundException
(Throwable cause) Creates a not found exception with the specified cause. -
Method Summary
Methods inherited from class io.inverno.mod.http.base.HttpException
fromStatus, fromStatus, fromStatus, fromStatus, getStatus, getStatusCategory, getStatusCode, getStatusReasonPhrase, wrap
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NotFoundException
public NotFoundException()Creates a not found exception.
-
NotFoundException
Creates a not found exception with the specified message.
- Parameters:
message
- a message
-
NotFoundException
Creates a not found exception with the specified cause.
- Parameters:
cause
- a cause
-
NotFoundException
Creates a not found exception with the specified message and cause.
- Parameters:
message
- a messagecause
- a cause
-