public class WebApplicationException extends RuntimeException
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(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.Status 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
|
Modifier and Type | Method and Description |
---|---|
Response |
getResponse()
Get the HTTP response.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, 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 © 2012 JBoss by Red Hat. All Rights Reserved.