1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

RuntimeException

This commit is contained in:
Douglas Crockford 2013-02-19 04:41:16 -08:00
parent 50c3afb216
commit 0759465bdf

View file

@ -1,28 +1,38 @@
package org.json; package org.json;
/** /**
* The JSONException is thrown by the JSON.org classes when things are amiss. * The JSONException is thrown by the JSON.org classes when things are amiss.
* @author JSON.org *
* @version 2010-12-24 * @author JSON.org
*/ * @version 2013-02-10
public class JSONException extends Exception { */
private static final long serialVersionUID = 0; public class JSONException extends RuntimeException {
private Throwable cause; private static final long serialVersionUID = 0;
private Throwable cause;
/**
* Constructs a JSONException with an explanatory message. /**
* @param message Detail about the reason for the exception. * Constructs a JSONException with an explanatory message.
*/ *
public JSONException(String message) { * @param message
super(message); * Detail about the reason for the exception.
} */
public JSONException(String message) {
public JSONException(Throwable cause) { super(message);
super(cause.getMessage()); }
this.cause = cause;
} /**
* Constructs a new JSONException with the specified cause.
public Throwable getCause() { */
return this.cause; public JSONException(Throwable cause) {
} super(cause.getMessage());
} this.cause = cause;
}
/**
* Returns the cause of this throwable or null if the cause is nonexistent or unknown.
* @returns the cause of this throwable or null if the cause is nonexistent or unknown.
*/
public Throwable getCause() {
return this.cause;
}
}