com.fasterxml.jackson.core

Class JsonParseException

  • All Implemented Interfaces:
    Serializable


    public class JsonParseException
    extends JsonProcessingException
    Exception type for parsing problems, used when non-well-formed content (content that does not conform to JSON syntax as per specification) is encountered.
    See Also:
    Serialized Form
    • Method Detail

      • getProcessor

        public JsonParser getProcessor()
        Description copied from class: JsonProcessingException
        Method that allows accessing underlying processor that triggered this exception; typically either JsonParser or JsonGenerator for exceptions that originate from streaming API. Note that it is possible that `null` may be returned if code throwing exception either has no access to processor; or has not been retrofitted to set it; this means that caller needs to take care to check for nulls. Subtypes override this method with co-variant return type, for more type-safe access.
        Overrides:
        getProcessor in class JsonProcessingException
        Returns:
        Originating processor, if available; null if not.

Copyright © 2008-2015 FasterXML. All Rights Reserved.