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

net.dongliu.dbutils.exception.UncheckedSQLException Maven / Gradle / Ivy

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