All Downloads are FREE. Search and download functionalities are using the official Maven repository.

schemacrawler.tools.text.utility.org.json.JSONException Maven / Gradle / Ivy

Go to download

SchemaCrawler is an open-source Java API that makes working with database metadata as easy as working with plain old Java objects. SchemaCrawler is also a database schema discovery and comprehension, and schema documentation tool. You can search for database schema objects using regular expressions, and output the schema and data in a readable text format. The output is designed to be diff-ed against other database schemas.

There is a newer version: 16.22.2
Show newest version
package schemacrawler.tools.text.utility.org.json;


/**
 * The JSONException is thrown by the JSON.org classes when things are
 * amiss.
 *
 * @author JSON.org
 * @version 2010-12-24
 */
public class JSONException
  extends Exception
{
  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.
   */
  public JSONException(final String message)
  {
    super(message);
  }

  public JSONException(final Throwable cause)
  {
    super(cause.getMessage());
    this.cause = cause;
  }

  @Override
  public Throwable getCause()
  {
    return cause;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy