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

org.zodiac.sdk.json.exception.JSONSQLRuntimeException Maven / Gradle / Ivy

There is a newer version: 1.5.17
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy