Skip to content

Instantly share code, notes, and snippets.

@hascode
Created February 27, 2015 13:07
Show Gist options
  • Save hascode/7ea35258f9c1bdd5707f to your computer and use it in GitHub Desktop.
Save hascode/7ea35258f9c1bdd5707f to your computer and use it in GitHub Desktop.
Example JAX-RS Exception Mapper
@Provider
public class CustomExceptionMapper implements ExceptionMapper<CustomException> {
@Override
public Response toResponse(final CustomException exception) {
return Response.status(Status.BAD_REQUEST).entity(exception).type(MediaType.APPLICATION_JSON).build();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment