- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.google.gson.JsonParseException
-
- com.google.gson.JsonSyntaxException
-
- All Implemented Interfaces:
Serializable
public final class JsonSyntaxException extends JsonParseException
This exception is raised when Gson attempts to read (or write) a malformed JSON element.- Author:
- Inderjeet Singh, Joel Leitch
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JsonSyntaxException(String msg)
JsonSyntaxException(String msg, Throwable cause)
JsonSyntaxException(Throwable cause)
Creates exception with the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
JsonSyntaxException
public JsonSyntaxException(String msg)
-
JsonSyntaxException
public JsonSyntaxException(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.
-
-