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

org.zodiac.datasource.jdbc.exception.DataSourceRuntimeException Maven / Gradle / Ivy

The newest version!
package org.zodiac.datasource.jdbc.exception;

public class DataSourceRuntimeException extends RuntimeException {

    private static final long serialVersionUID = -7440689836268724660L;

    public DataSourceRuntimeException() {
        super();
    }

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

    public DataSourceRuntimeException(String message) {
        super(message);
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy