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

cn.icuter.jsql.exception.JSQLException Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package cn.icuter.jsql.exception;

import java.sql.SQLException;

/**
 * @author edward
 * @since 2018-09-16
 */
public class JSQLException extends SQLException {
    public JSQLException(String message) {
        super(message);
    }
    public JSQLException(String message, Throwable cause) {
        super(message, cause);
    }
    public JSQLException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy