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:
java.io.Serializable
@Deprecated public class JSONParseException extends java.lang.RuntimeException
Deprecated.there is no replacement for this classException 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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JSONParseException(java.lang.String jsonString, int position)
Deprecated.Creates a new instance.JSONParseException(java.lang.String jsonString, int position, java.lang.Throwable cause)
Deprecated.Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getMessage()
Deprecated.
-
-
-
Constructor Detail
-
JSONParseException
public JSONParseException(java.lang.String jsonString, int position)
Deprecated.Creates a new instance.- Parameters:
jsonString
- the JSON being parsedposition
- the position of the failure
-
JSONParseException
public JSONParseException(java.lang.String jsonString, int position, java.lang.Throwable cause)
Deprecated.Creates a new instance.- Parameters:
jsonString
- the JSON being parsedposition
- the position of the failurecause
- the root cause
-
-