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

com.github.ltsopensource.json.JSONException Maven / Gradle / Ivy

package com.github.ltsopensource.json;

/**
 * @author Robert HG ([email protected]) on 12/28/15.
 */
public class JSONException extends RuntimeException {

    private static final long serialVersionUID = 0;

    public JSONException(final String message) {
        super(message);
    }

    public JSONException(final String message, final Throwable cause) {
        super(message, cause);
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy