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

com.github.davidmoten.rx.jdbc.exceptions.SQLRuntimeException Maven / Gradle / Ivy

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