FileDocCategorySizeDatePackage
JSONException.javaAPI DocExample1043Wed Jul 26 13:30:26 BST 2006com.oreilly.ajax.client

JSONException

public class JSONException extends Exception
Exception that can be thrown by the different JSON manipulation methods in this example.

Fields Summary
Constructors Summary
public JSONException()

  
public JSONException(String message)

    super(message);
  
public JSONException(String message, Throwable cause)

    super(message, cause);
  
public JSONException(Throwable cause)

    super(cause);
  
Methods Summary