Package | Description |
---|---|
com.fasterxml.jackson.databind.exc |
Modifier and Type | Class | Description |
---|---|---|
class |
IgnoredPropertyException |
Specialized
JsonMappingException sub-class used to indicate
case where an explicitly ignored property is encountered, and mapper
is configured to consider this an error. |
class |
InvalidFormatException |
Specialized sub-class of
MismatchedInputException
that is used when the underlying problem appears to be that
of bad formatting of a value to deserialize. |
class |
InvalidNullException |
Exception thrown if a `null` value is being encountered for a property
designed as "fail on null" property (see
JsonSetter ). |
class |
InvalidTypeIdException |
Exception thrown when resolution of a type id fails.
|
class |
PropertyBindingException |
Base class for
JsonMappingException s that are specifically related
to problems related to binding an individual property. |
class |
UnrecognizedPropertyException |
Specialized
JsonMappingException sub-class specifically used
to indicate problems due to encountering a JSON property that could
not be mapped to an Object property (via getter, constructor argument
or field). |
Modifier and Type | Method | Description |
---|---|---|
static MismatchedInputException |
MismatchedInputException.from(com.fasterxml.jackson.core.JsonParser p,
JavaType targetType,
String msg) |
|
static MismatchedInputException |
MismatchedInputException.from(com.fasterxml.jackson.core.JsonParser p,
Class<?> targetType,
String msg) |
|
static MismatchedInputException |
MismatchedInputException.from(com.fasterxml.jackson.core.JsonParser p,
String msg) |
Deprecated.
|
MismatchedInputException |
MismatchedInputException.setTargetType(JavaType t) |
Copyright © 2008–2018. All rights reserved.