com.fasterxml.jackson.databind.exc

Class UnrecognizedPropertyException

    • Constructor Detail

      • UnrecognizedPropertyException

        public UnrecognizedPropertyException(com.fasterxml.jackson.core.JsonParser p,
                                             String msg,
                                             com.fasterxml.jackson.core.JsonLocation loc,
                                             Class<?> referringClass,
                                             String propName,
                                             Collection<Object> propertyIds)
      • UnrecognizedPropertyException

        @Deprecated
        public UnrecognizedPropertyException(String msg,
                                                         com.fasterxml.jackson.core.JsonLocation loc,
                                                         Class<?> referringClass,
                                                         String propName,
                                                         Collection<Object> propertyIds)
        Deprecated. Since 2.7
    • Method Detail

      • from

        public static UnrecognizedPropertyException from(com.fasterxml.jackson.core.JsonParser p,
                                                         Object fromObjectOrClass,
                                                         String propertyName,
                                                         Collection<Object> propertyIds)
        Factory method used for constructing instances of this exception type.
        Parameters:
        p - Underlying parser used for reading input being used for data-binding
        fromObjectOrClass - Reference to either instance of problematic type ( if available), or if not, type itself
        propertyName - Name of unrecognized property
        propertyIds - (optional, null if not available) Set of properties that type would recognize, if completely known: null if set cannot be determined.

Copyright © 2008–2020 FasterXML. All rights reserved.