Package net.thisptr.jackson.jq.exception
Class JsonQueryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.fasterxml.jackson.core.JacksonException
-
- com.fasterxml.jackson.core.JsonProcessingException
-
- net.thisptr.jackson.jq.exception.JsonQueryException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
IllegalJsonArgumentException
,IllegalJsonInputException
,JsonQueryBreakException
,JsonQueryTypeException
,JsonQueryUndefinedBehaviorException
,JsonQueryUserException
public class JsonQueryException extends com.fasterxml.jackson.core.JsonProcessingException
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static int
MAX_JSON_STRING_LENGTH
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description JsonQueryException(java.lang.String msg)
JsonQueryException(java.lang.String format, java.lang.Object... args)
JsonQueryException(java.lang.String msg, java.lang.Throwable rootCause)
JsonQueryException(java.lang.Throwable e)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static java.lang.String
format(java.lang.String format, java.lang.Object... args)
com.fasterxml.jackson.databind.JsonNode
getMessageAsJsonNode()
-
Methods inherited from class com.fasterxml.jackson.core.JsonProcessingException
clearLocation, getLocation, getMessage, getMessageSuffix, getOriginalMessage, getProcessor, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
MAX_JSON_STRING_LENGTH
private static final int MAX_JSON_STRING_LENGTH
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
JsonQueryException
public JsonQueryException(java.lang.String msg)
-
JsonQueryException
public JsonQueryException(java.lang.Throwable e)
-
JsonQueryException
public JsonQueryException(java.lang.String msg, java.lang.Throwable rootCause)
-
JsonQueryException
public JsonQueryException(java.lang.String format, java.lang.Object... args)
-
-