![JAR search and dependency download from the Maven repository](/logo.png)
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 {
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