net.hamnaberg.json.io.JsonParseException Maven / Gradle / Ivy
package net.hamnaberg.json.io;
public class JsonParseException extends RuntimeException {
public JsonParseException(String message) {
super(message);
}
public JsonParseException(String message, Throwable cause) {
super(message, cause);
}
public JsonParseException(Throwable cause) {
super(cause);
}
protected JsonParseException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy