Uses of Class
com.fasterxml.jackson.databind.exc.MismatchedInputException
-
Packages that use MismatchedInputException Package Description com.fasterxml.jackson.databind.exc -
-
Uses of MismatchedInputException in com.fasterxml.jackson.databind.exc
Subclasses of MismatchedInputException in com.fasterxml.jackson.databind.exc Modifier and Type Class Description classIgnoredPropertyExceptionSpecializedJsonMappingExceptionsub-class used to indicate case where an explicitly ignored property is encountered, and mapper is configured to consider this an error.classInvalidFormatExceptionSpecialized sub-class ofMismatchedInputExceptionthat is used when the underlying problem appears to be that of bad formatting of a value to deserialize.classInvalidNullExceptionException thrown if a `null` value is being encountered for a property designed as "fail on null" property (seeJsonSetter).classInvalidTypeIdExceptionException thrown when resolution of a type id fails.classPropertyBindingExceptionBase class forJsonMappingExceptions that are specifically related to problems related to binding an individual property.classUnrecognizedPropertyExceptionSpecializedJsonMappingExceptionsub-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).Methods in com.fasterxml.jackson.databind.exc that return MismatchedInputException Modifier and Type Method Description static MismatchedInputExceptionMismatchedInputException. from(com.fasterxml.jackson.core.JsonParser p, JavaType targetType, String msg)static MismatchedInputExceptionMismatchedInputException. from(com.fasterxml.jackson.core.JsonParser p, Class<?> targetType, String msg)static MismatchedInputExceptionMismatchedInputException. from(com.fasterxml.jackson.core.JsonParser p, String msg)Deprecated.MismatchedInputExceptionMismatchedInputException. setTargetType(JavaType t)
-