|
||||||||||
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
javax.ws.rs.RedirectionException
public class RedirectionException
A runtime application exception indicating a request redirection
(HTTP 3xx
status codes).
Constructor Summary | |
---|---|
RedirectionException(int status,
URI location)
Construct a new redirection exception. |
|
RedirectionException(Response.Status status,
URI location)
Construct a new redirection exception. |
|
RedirectionException(Response response)
Construct a new redirection exception. |
Method Summary | |
---|---|
URI |
getLocation()
Get the redirection response location. |
Methods inherited from class javax.ws.rs.WebApplicationException |
---|
getResponse |
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 RedirectionException(Response.Status status, URI location) throws IllegalArgumentException
status
- redirection status. Must be a 3xx
redirection code.location
- redirection URI placed into the response Location
header.
IllegalArgumentException
- in case the status code is null
or is not from
Response.Status.Family.REDIRECTION
status code
family.public RedirectionException(int status, URI location) throws IllegalArgumentException
status
- redirection status. Must be a 3xx
redirection code.location
- redirection URI placed into the response Location
header.
IllegalArgumentException
- in case the status code is not a valid HTTP status code or
if it is not from the Response.Status.Family.REDIRECTION
status code family.public RedirectionException(Response response) throws IllegalArgumentException
response
- redirection response. Must have a status code set to a 3xx
redirection code.
IllegalArgumentException
- in case the response status code is not from the
Response.Status.Family.REDIRECTION
status code family.Method Detail |
---|
public URI getLocation()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |