Package | Description |
---|---|
com.fasterxml.jackson.databind |
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode ), as well as
writing Java Objects and trees as JSON. |
Modifier and Type | Field and Description |
---|---|
protected java.util.LinkedList<JsonMappingException.Reference> |
JsonMappingException._path
Path through which problem that triggering throwing of
this exception was reached.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<JsonMappingException.Reference> |
JsonMappingException.getPath()
Method for accessing full structural path within type hierarchy
down to problematic property.
|
Modifier and Type | Method and Description |
---|---|
void |
JsonMappingException.prependPath(JsonMappingException.Reference r) |
static JsonMappingException |
JsonMappingException.wrapWithPath(java.lang.Throwable src,
JsonMappingException.Reference ref)
Method that can be called to either create a new JsonMappingException
(if underlying exception is not a JsonMappingException), or augment
given exception with given path/reference information.
|
Constructor and Description |
---|
Reference(JsonMappingException.Reference src,
java.lang.String asString,
java.lang.Object newFrom) |