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