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

bdi.glue.jdbc.common.JdbcException Maven / Gradle / Ivy

package bdi.glue.jdbc.common;

/**
 * @author @aloyer
 */
public class JdbcException extends RuntimeException {
    public JdbcException(String message) {
        super(message);
    }

    public JdbcException(String message, Throwable cause) {
        super(message, cause);
    }

    public JdbcException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy