Class JsonProcessingException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.codehaus.jackson.JsonProcessingException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
JsonGenerationException, JsonMappingException, JsonParseException

public class JsonProcessingException extends IOException
Intermediate base class for all problems encountered when processing (parsing, generating) JSON content that are not pure I/O problems. Regular IOExceptions will be passed through as is. Sub-class of IOException for convenience.
See Also:
  • Field Details

  • Constructor Details

    • JsonProcessingException

      protected JsonProcessingException(String msg, JsonLocation loc, Throwable rootCause)
    • JsonProcessingException

      protected JsonProcessingException(String msg)
    • JsonProcessingException

      protected JsonProcessingException(String msg, JsonLocation loc)
    • JsonProcessingException

      protected JsonProcessingException(String msg, Throwable rootCause)
    • JsonProcessingException

      protected JsonProcessingException(Throwable rootCause)
  • Method Details