All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dongliu.commons.exception.UncheckedSqlException Maven / Gradle / Ivy

There is a newer version: 6.7.0
Show newest version
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