use of org.glassfish.jersey.tests.integration.jersey2730.exception.UnmappedException in project jersey by jersey.
the class TestExceptionResource method getUnmappedException.
@GET
@Path("unmapped")
public void getUnmappedException(@Suspended final AsyncResponse asyncResponse) {
lastProcessingThread = Thread.currentThread();
asyncResponse.resume(new UnmappedException());
}
Aggregations