
net.dongliu.dbutils.exception.UncheckedSQLException Maven / Gradle / Ivy
package net.dongliu.dbutils.exception;
import java.sql.SQLException;
/**
* @author Liu Dong
*/
public class UncheckedSQLException extends RuntimeException {
private static final long serialVersionUID = 7068173044204809643L;
public UncheckedSQLException() {
}
public UncheckedSQLException(String message) {
super(message);
}
public UncheckedSQLException(String message, SQLException cause) {
super(message, cause);
}
public UncheckedSQLException(SQLException cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy