![JAR search and dependency download from the Maven repository](/logo.png)
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