@Response(code=403, description="Forbidden") public class Forbidden extends HttpException
The request was valid, but the server is refusing action.
The user might not have the necessary permissions for a resource, or may need an account of some sort.
| Modifier and Type | Field and Description |
|---|---|
static int |
CODE
HTTP status code
|
static String |
MESSAGE
Default message
|
| Constructor and Description |
|---|
Forbidden()
Constructor.
|
Forbidden(String msg)
Constructor.
|
Forbidden(String msg,
Object... args)
Constructor.
|
Forbidden(Throwable cause)
Constructor.
|
Forbidden(Throwable cause,
String msg,
Object... args)
Constructor.
|
getFullStackMessage, getRootCause, getStatus, hashCode, setStatus, toStringaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTracepublic static final int CODE
public static final String MESSAGE
public Forbidden(Throwable cause, String msg, Object... args)
cause - The cause. Can be msg - The message. Can be args - Optional MessageFormat-style arguments in the message.public Forbidden()
public Forbidden(String msg, Object... args)
msg - The message. Can be args - Optional MessageFormat-style arguments in the message.Copyright © 2016–2019 The Apache Software Foundation. All rights reserved.