Uses of Class
com.fasterxml.jackson.databind.JsonMappingException.Reference
-
Packages that use JsonMappingException.Reference 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. -
-
Uses of JsonMappingException.Reference in com.fasterxml.jackson.databind
Fields in com.fasterxml.jackson.databind with type parameters of type JsonMappingException.Reference Modifier and Type Field Description protected java.util.LinkedList<JsonMappingException.Reference>
JsonMappingException. _path
Path through which problem that triggering throwing of this exception was reached.Methods in com.fasterxml.jackson.databind that return types with arguments of type JsonMappingException.Reference Modifier and Type Method Description java.util.List<JsonMappingException.Reference>
JsonMappingException. getPath()
Method for accessing full structural path within type hierarchy down to problematic property.Methods in com.fasterxml.jackson.databind with parameters of type JsonMappingException.Reference Modifier and Type Method 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.
-