Package com.google.gson
Class JsonSyntaxException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.google.gson.JsonParseException
-
- com.google.gson.JsonSyntaxException
-
- All Implemented Interfaces:
java.io.Serializable
public final class JsonSyntaxException extends JsonParseException
This exception is raised when Gson attempts to read (or write) a malformed JSON element.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JsonSyntaxException(java.lang.String msg)
JsonSyntaxException(java.lang.String msg, java.lang.Throwable cause)
JsonSyntaxException(java.lang.Throwable cause)
Creates exception with the specified cause.
-
-
-
Constructor Detail
-
JsonSyntaxException
public JsonSyntaxException(java.lang.String msg)
-
JsonSyntaxException
public JsonSyntaxException(java.lang.String msg, java.lang.Throwable cause)
-
JsonSyntaxException
public JsonSyntaxException(java.lang.Throwable cause)
Creates exception with the specified cause. Consider usingJsonSyntaxException(String, Throwable)
instead if you can describe what actually happened.- Parameters:
cause
- root exception that caused this exception to be thrown.
-
-