
net.dongliu.commons.exception.UncheckedSqlException Maven / Gradle / Ivy
package net.dongliu.commons.exception;
import java.sql.SQLException;
/**
* Unchecked version of SqlException
*
* @author Liu Dong
*/
public class UncheckedSqlException extends RuntimeException {
public UncheckedSqlException(SQLException cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy