Skip to content

Instantly share code, notes, and snippets.

@ksahnine
Created January 15, 2015 08:24
Show Gist options
  • Save ksahnine/28a8a7a423ca8990365d to your computer and use it in GitHub Desktop.
Save ksahnine/28a8a7a423ca8990365d to your computer and use it in GitHub Desktop.
Dropwizard - Exception manager
public class IOExceptionMapper implements ExceptionMapper<IOException> {
public Response toResponse(IOException exception) {
return Response.serverError().entity("{ \"message\": \"" + exception.toString() + "\"}").build();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment