Serializable
public class WebApplicationException extends RuntimeException
This exception may be thrown by a resource method, provider or
StreamingOutput
implementation if a specific
HTTP error response needs to be produced. Only effective if thrown prior to
the response being committed.
Constructor | Description |
---|---|
WebApplicationException() |
Construct a new instance with a blank message and default HTTP status code of 500
|
WebApplicationException(int status) |
Construct a new instance with a blank message and specified HTTP status code
|
WebApplicationException(Throwable cause) |
Construct a new instance with a blank message and default HTTP status code of 500
|
WebApplicationException(Throwable cause,
int status) |
Construct a new instance with a blank message and specified HTTP status code
|
WebApplicationException(Throwable cause,
Response response) |
Construct a new instance using the supplied response
|
WebApplicationException(Throwable cause,
Response.Status status) |
Construct a new instance with a blank message and specified HTTP status code
|
WebApplicationException(Response response) |
Construct a new instance using the supplied response
|
WebApplicationException(Response.Status status) |
Construct a new instance with a blank message and specified HTTP status code
|
Modifier and Type | Method | Description |
---|---|---|
Response |
getResponse() |
Get the HTTP response.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public WebApplicationException()
public WebApplicationException(Response response)
response
- the response that will be returned to the client, a value
of null will be replaced with an internal server error response (status
code 500)public WebApplicationException(int status)
status
- the HTTP status code that will be returned to the clientpublic WebApplicationException(Response.Status status)
status
- the HTTP status code that will be returned to the clientIllegalArgumentException
- if status is nullpublic WebApplicationException(Throwable cause)
cause
- the underlying cause of the exceptionpublic WebApplicationException(Throwable cause, Response response)
response
- the response that will be returned to the client, a value
of null will be replaced with an internal server error response (status
code 500)cause
- the underlying cause of the exceptionpublic WebApplicationException(Throwable cause, int status)
status
- the HTTP status code that will be returned to the clientcause
- the underlying cause of the exceptionpublic WebApplicationException(Throwable cause, Response.Status status)
status
- the HTTP status code that will be returned to the clientcause
- the underlying cause of the exceptionIllegalArgumentException
- if status is nullpublic Response getResponse()
Copyright © 2019 Sun Microsystems, Inc. All rights reserved.