public class JSONException
extends java.lang.Exception
Constructor and Description |
---|
JSONException()
Constructs a new exception with
null as its detail
message. |
JSONException(java.lang.String message)
Constructs a new exception with the specified detail message.
|
JSONException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new exception with the specified detail message
and cause.
|
JSONException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and a
detail message of
(cause==null ? null :
cause.toString()) (which typically contains the class
and detail message of cause). |
public JSONException()
null
as its detail
message.public JSONException(java.lang.String message)
public JSONException(java.lang.String message, java.lang.Throwable cause)
public JSONException(java.lang.Throwable cause)
(cause==null ? null :
cause.toString())
(which typically contains the class
and detail message of cause).