com.fitbur.fasterxml.jackson.databind.exc.UnrecognizedPropertyException Maven / Gradle / Ivy
package com.fitbur.fasterxml.jackson.databind.exc;
import java.util.*;
import com.fitbur.fasterxml.jackson.core.JsonLocation;
import com.fitbur.fasterxml.jackson.core.JsonParser;
import com.fitbur.fasterxml.jackson.databind.JsonMappingException;
/**
* Specialized {@link 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).
*/
public class UnrecognizedPropertyException
extends JsonMappingException
{
private static final long serialVersionUID = 1L;
/**
* Class that does not contain mapping for the unrecognized property.
*/
protected final Class> _referringClass;
/**
*
* Note: redundant information since it is also included in the
* reference path.
*/
protected final String _unrecognizedPropertyName;
/**
* Set of ids of properties that are known for the type, if this
* can be statically com.fitburtermined.
*/
protected final Collection
© 2015 - 2024 Weber Informatics LLC | Privacy Policy