com.github.davidmoten.rx.jdbc.exceptions.SQLRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxjava-jdbc Show documentation
Show all versions of rxjava-jdbc Show documentation
rx-java Observables for jdbc
package com.github.davidmoten.rx.jdbc.exceptions;
import java.sql.SQLException;
public class SQLRuntimeException extends RuntimeException {
private static final long serialVersionUID = -2895807523709102758L;
public SQLRuntimeException(SQLException e) {
super(e);
}
public SQLRuntimeException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy