@Response(code=404, description="Not Found") public class NotFound extends HttpException
The requested resource could not be found but may be available in the future.
Subsequent requests by the client are permissible.
| Modifier and Type | Field and Description |
|---|---|
static int |
CODE
HTTP status code
|
static String |
MESSAGE
Default message
|
| Constructor and Description |
|---|
NotFound()
Constructor.
|
NotFound(String msg)
Constructor.
|
NotFound(String msg,
Object... args)
Constructor.
|
NotFound(Throwable cause)
Constructor.
|
NotFound(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 NotFound(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 NotFound()
public NotFound(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.