|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.ws.rs.WebApplicationException
public class WebApplicationException
Runtime exception for applications.
This acception may be thrown by a Web application if a specific HTTP error response needs to be produced.
| Constructor Summary | |
|---|---|
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 response)
Construct a new instance with a blank message and specified HTTP status code |
|
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 response)
Construct a new instance with a blank message and specified HTTP status code |
|
| Method Summary | |
|---|---|
Response |
getResponse()
Get the HTTP response. |
| Methods inherited from class java.lang.Throwable |
|---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public WebApplicationException()
public WebApplicationException(Response response)
response - the response that will be returned to the clientpublic WebApplicationException(int status)
status - the HTTP status code that will be returned to the clientpublic WebApplicationException(java.lang.Throwable cause)
cause - the underlying cause of the exception
public WebApplicationException(java.lang.Throwable cause,
Response response)
response - the response that will be returned to the clientcause - the underlying cause of the exception
public WebApplicationException(java.lang.Throwable cause,
int status)
status - the HTTP status code that will be returned to the clientcause - the underlying cause of the exception| Method Detail |
|---|
public Response getResponse()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||