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

com.progsbase.libraries.JSON.JSONException Maven / Gradle / Ivy

There is a newer version: 3.2.26
Show newest version
package com.progsbase.libraries.JSON;

public class JSONException extends Exception {
    public JSONException(String errorMessage) {
        super(errorMessage);
    }

    public JSONException(Exception e) {
        super(e);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy