com.github.ltsopensource.core.json.JSONException Maven / Gradle / Ivy
package com.github.ltsopensource.core.json;
/**
* @author Robert HG ([email protected]) on 11/19/15.
*/
public class JSONException extends RuntimeException {
public JSONException() {
super();
}
public JSONException(String message) {
super(message);
}
public JSONException(String message, Throwable cause) {
super(message, cause);
}
public JSONException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy