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

com.base4j.mybatis.config.exception.DataSourceBuildException Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package com.base4j.mybatis.config.exception;

/**
 * Created by USER on 2017-03-13.
 */
public class DataSourceBuildException extends RuntimeException {

    public DataSourceBuildException() {
        super();
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy