java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.inverno.mod.http.base.HttpException
io.inverno.mod.http.base.ForbiddenException
- All Implemented Interfaces:
Serializable
A HTTP exception that indicates a Forbidden (403)
access to a server resource.
- Since:
- 1.0
- Author:
- Jeremy Kuhn
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates a forbidden exception.ForbiddenException
(String message) Creates a forbidden exception with the specified message.ForbiddenException
(String message, Throwable cause) Creates a forbidden exception with the specified message and cause.ForbiddenException
(Throwable cause) Creates a forbidden 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
-
ForbiddenException
public ForbiddenException()Creates a forbidden exception.
-
ForbiddenException
Creates a forbidden exception with the specified message.
- Parameters:
message
- a message
-
ForbiddenException
Creates a forbidden exception with the specified cause.
- Parameters:
cause
- a cause
-
ForbiddenException
Creates a forbidden exception with the specified message and cause.
- Parameters:
message
- a messagecause
- a cause
-