Package org.json
Class JSONPointerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.json.JSONException
-
- org.json.JSONPointerException
-
- All Implemented Interfaces:
java.io.Serializable
public class JSONPointerException extends JSONException
The JSONPointerException is thrown byJSONPointer
if an error occurs during evaluating a pointer.- Version:
- 2016-05-13
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description JSONPointerException(java.lang.String message)
Constructs a new JSONPointerException with the specified error message.JSONPointerException(java.lang.String message, java.lang.Throwable cause)
Constructs a new JSONPointerException with the specified error message and cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
JSONPointerException
public JSONPointerException(java.lang.String message)
Constructs a new JSONPointerException with the specified error message.- Parameters:
message
- The detail message describing the reason for the exception.
-
JSONPointerException
public JSONPointerException(java.lang.String message, java.lang.Throwable cause)
Constructs a new JSONPointerException with the specified error message and cause.- Parameters:
message
- The detail message describing the reason for the exception.cause
- The cause of the exception.
-
-