Search in sources :

Example 1 with MyException

use of org.glassfish.jersey.examples.exception.Exceptions.MyException in project jersey by jersey.

the class ExceptionResource method testMyException.

@POST
@Path("my")
public String testMyException(String s) {
    String[] tokens = s.split(":");
    assert tokens.length == 2;
    int statusCode = Integer.valueOf(tokens[1]);
    Response r = Response.status(statusCode).build();
    throw new MyException(r);
}
Also used : Response(javax.ws.rs.core.Response) MyException(org.glassfish.jersey.examples.exception.Exceptions.MyException) Path(javax.ws.rs.Path) POST(javax.ws.rs.POST)

Aggregations

POST (javax.ws.rs.POST)1 Path (javax.ws.rs.Path)1 Response (javax.ws.rs.core.Response)1 MyException (org.glassfish.jersey.examples.exception.Exceptions.MyException)1