Class InvalidDefinitionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.fasterxml.jackson.core.JsonProcessingException
-
- com.fasterxml.jackson.databind.JsonMappingException
-
- com.fasterxml.jackson.databind.exc.InvalidDefinitionException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidDefinitionException extends JsonMappingException
Intermediate exception type used as the base class for allJsonMappingException
s that are due to problems with target type definition; usually a problem with annotations used on a class or its properties. This is in contrast toMismatchedInputException
which signals a problem with input to map.- Since:
- 2.9
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonMappingException
JsonMappingException.Reference
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InvalidDefinitionException
from(JsonGenerator g, java.lang.String msg, BeanDescription bean, BeanPropertyDefinition prop)
static InvalidDefinitionException
from(JsonGenerator g, java.lang.String msg, JavaType type)
static InvalidDefinitionException
from(JsonParser p, java.lang.String msg, BeanDescription bean, BeanPropertyDefinition prop)
static InvalidDefinitionException
from(JsonParser p, java.lang.String msg, JavaType type)
BeanDescription
getBeanDescription()
Accessor for type definition (class) that had the definition problem, if any; may sometimes be undefined or unknown; if so, returnsnull
.BeanPropertyDefinition
getProperty()
Accessor for property that had the definition problem if any (none, for example if the problem relates to type in general), if known.JavaType
getType()
Accessor for type fully resolved type that had the problem; this should always known and available, nevernull
-
Methods inherited from class com.fasterxml.jackson.databind.JsonMappingException
from, from, from, from, from, from, from, from, fromUnexpectedIOE, getLocalizedMessage, getMessage, getPath, getPathReference, getPathReference, getProcessor, prependPath, prependPath, prependPath, toString, wrapWithPath, wrapWithPath, wrapWithPath
-
Methods inherited from class com.fasterxml.jackson.core.JsonProcessingException
clearLocation, getLocation, getOriginalMessage
-
-
-
-
Method Detail
-
from
public static InvalidDefinitionException from(JsonParser p, java.lang.String msg, BeanDescription bean, BeanPropertyDefinition prop)
-
from
public static InvalidDefinitionException from(JsonParser p, java.lang.String msg, JavaType type)
-
from
public static InvalidDefinitionException from(JsonGenerator g, java.lang.String msg, BeanDescription bean, BeanPropertyDefinition prop)
-
from
public static InvalidDefinitionException from(JsonGenerator g, java.lang.String msg, JavaType type)
-
getType
public JavaType getType()
Accessor for type fully resolved type that had the problem; this should always known and available, nevernull
-
getBeanDescription
public BeanDescription getBeanDescription()
Accessor for type definition (class) that had the definition problem, if any; may sometimes be undefined or unknown; if so, returnsnull
.
-
getProperty
public BeanPropertyDefinition getProperty()
Accessor for property that had the definition problem if any (none, for example if the problem relates to type in general), if known. If not known (or relevant), returnsnull
.
-
-