cn.icuter.jsql.exception.JSQLException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsql Show documentation
Show all versions of jsql Show documentation
JDBC framework for writing sql like java programing
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);
}
}