Search in sources :

Example 1 with UnmappedException

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());
}
Also used : UnmappedException(org.glassfish.jersey.tests.integration.jersey2730.exception.UnmappedException) Path(javax.ws.rs.Path) GET(javax.ws.rs.GET)

Aggregations

GET (javax.ws.rs.GET)1 Path (javax.ws.rs.Path)1 UnmappedException (org.glassfish.jersey.tests.integration.jersey2730.exception.UnmappedException)1