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

com.github.ltsopensource.store.jdbc.exception.JdbcException Maven / Gradle / Ivy

package com.github.ltsopensource.store.jdbc.exception;

/**
 * @author Robert HG ([email protected]) on 3/8/16.
 */
public class JdbcException extends RuntimeException {

    public JdbcException() {
        super();
    }

    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