public class WebApplicationException
extends java.lang.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 and 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(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(java.lang.Throwable cause)
Construct a new instance with a blank message and default HTTP status code of 500
|
WebApplicationException(java.lang.Throwable cause,
int status)
Construct a new instance with a blank message and specified HTTP status code
|
WebApplicationException(java.lang.Throwable cause,
Response.Status status)
Construct a new instance with a blank message and specified HTTP status code
|
WebApplicationException(java.lang.Throwable cause,
Response response)
Construct a new instance using the supplied response
|
Modifier and Type | Method and Description |
---|---|
Response |
getResponse()
Get the HTTP response.
|
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 clientjava.lang.IllegalArgumentException
- if status is nullpublic WebApplicationException(java.lang.Throwable cause)
cause
- the underlying cause of the exceptionpublic WebApplicationException(java.lang.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(java.lang.Throwable cause, int status)
status
- the HTTP status code that will be returned to the clientcause
- the underlying cause of the exceptionpublic WebApplicationException(java.lang.Throwable cause, Response.Status status)
status
- the HTTP status code that will be returned to the clientcause
- the underlying cause of the exceptionjava.lang.IllegalArgumentException
- if status is nullpublic Response getResponse()
Copyright © 2016 Oracle Corporation. All Rights Reserved.