org.zodiac.sdk.json.exception.JSONException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zodiac-sdk-json Show documentation
Show all versions of zodiac-sdk-json Show documentation
Zodiac SDK JSON(JavaScript Object Notation)
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);
}
}