|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException com.google.gson.JsonParseException
public class JsonParseException
This exception is raised if there is a serious issue that occurs during parsing of a Json string. One of the main usages for this class is for the Gson infrastructure. If the incoming Json is bad/malicious, an instance of this exception is raised.
This exception is a RuntimeException
because it is exposed to the client. Using a
RuntimeException
avoids bad coding practices on the client side where they catch the
exception and do nothing. It is often the case that you want to blow up if there is a parsing
error (i.e. often clients do not know how to recover from a JsonParseException
.
Constructor Summary | |
---|---|
JsonParseException(String msg)
Creates exception with the specified message. |
|
JsonParseException(String msg,
Throwable cause)
Creates exception with the specified message and cause. |
|
JsonParseException(Throwable cause)
Creates exception with the specified cause. |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public JsonParseException(String msg)
JsonParseException(String, Throwable)
instead.
msg
- error message describing a possible cause of this exception.public JsonParseException(String msg, Throwable cause)
msg
- error message describing what happened.cause
- root exception that caused this exception to be thrown.public JsonParseException(Throwable cause)
JsonParseException(String, Throwable)
instead if you can describe what happened.
cause
- root exception that caused this exception to be thrown.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |