Package com.fasterxml.jackson.jaxrs.base
Class JsonParseExceptionMapper
java.lang.Object
com.fasterxml.jackson.jaxrs.base.JsonParseExceptionMapper
- All Implemented Interfaces:
javax.ws.rs.ext.ExceptionMapper<com.fasterxml.jackson.core.JsonParseException>
public class JsonParseExceptionMapper
extends Object
implements javax.ws.rs.ext.ExceptionMapper<com.fasterxml.jackson.core.JsonParseException>
Implementation of
ExceptionMapper
to send down a "400 Bad Request"
in the event unparsable JSON is received.
Note that Provider
annotation was include up to
Jackson 2.7, but removed from 2.8 (as per [jaxrs-providers#22]
- Since:
- 2.2
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionjavax.ws.rs.core.Response
toResponse
(com.fasterxml.jackson.core.JsonParseException exception)
-
Constructor Details
-
JsonParseExceptionMapper
public JsonParseExceptionMapper()
-
-
Method Details
-
toResponse
public javax.ws.rs.core.Response toResponse(com.fasterxml.jackson.core.JsonParseException exception) - Specified by:
toResponse
in interfacejavax.ws.rs.ext.ExceptionMapper<com.fasterxml.jackson.core.JsonParseException>
-