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

org.json.JSONException Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package org.json;

import java.io.IOException;

public class JSONException extends RuntimeException {
    public JSONException(String string) {
        super(string);
    }

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

    private static final long serialVersionUID = 1L;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy