use of org.glassfish.jersey.examples.exception.Exceptions.MySubException in project jersey by jersey.
the class ExceptionResource method testMySubException.
@POST
@Path("mysub")
public String testMySubException(String s) {
String[] tokens = s.split(":");
assert tokens.length == 2;
int statusCode = Integer.valueOf(tokens[1]);
Response r = Response.status(statusCode).build();
throw new MySubException(r);
}
Aggregations