org.zodiac.sdk.json.exception.JSONSQLRuntimeException 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 JSONSQLRuntimeException extends RuntimeException {
private static final long serialVersionUID = 4131686592399695994L;
public JSONSQLRuntimeException() {
super();
}
public JSONSQLRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public JSONSQLRuntimeException(String message) {
super(message);
}
public JSONSQLRuntimeException(Throwable cause) {
super(cause);
}
}