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

org.zodiac.sdk.json.exception.JSONException Maven / Gradle / Ivy

There is a newer version: 1.5.17
Show newest version
package org.zodiac.sdk.json.exception;

public class JSONException extends RuntimeException {

    private static final long serialVersionUID = -5122300121711574859L;

    public JSONException() {
        super();
    }

    public JSONException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

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

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

    public JSONException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy