Package com.mongodb.util
Class JSONParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.mongodb.util.JSONParseException
- All Implemented Interfaces:
Serializable
Deprecated.
there is no replacement for this class
Exception that is thrown when invalid JSON is encountered by the parser.
The error message is formatted so that it points to the first.
This exception creates a message that points to the first offending character in the JSON string:
{ "x" : 3, "y" : 4, some invalid json.... } ^
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJSONParseException
(String jsonString, int position) Deprecated.Creates a new instance.JSONParseException
(String jsonString, int position, Throwable cause) Deprecated.Creates a new instance. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JSONParseException
Deprecated.Creates a new instance.- Parameters:
jsonString
- the JSON being parsedposition
- the position of the failure
-
JSONParseException
Deprecated.Creates a new instance.- Parameters:
jsonString
- the JSON being parsedposition
- the position of the failurecause
- the root cause
-
-
Method Details
-
getMessage
Deprecated.- Overrides:
getMessage
in classThrowable
-