![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;
/**
* Unchecked wrap for SQLException
*
* @author Liu Dong
*/
public class UncheckedSQLException extends RuntimeException {
public UncheckedSQLException(SQLException cause) {
super(cause);
}
public UncheckedSQLException(String msg) {
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy