FileDocCategorySizeDatePackage
JSONException.javaAPI DocAndroid 1.5 API405Wed May 06 22:41:04 BST 2009org.json

JSONException.java

package org.json;

/**
 * The JSONException is thrown by the JSON.org classes then things are amiss.
 * @author JSON.org
 * @version 2
 */
public class JSONException extends Exception {
    /**
     * Constructs a JSONException with an explanatory message.
     * @param message Detail about the reason for the exception.
     */
    public JSONException(String message) {
        super(message);
    }
}