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

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

The newest version!
package com.base4j.mybatis.config.exception;

/**
 * Created by USER on 2017/4/30.
 */
public class ConfigErrorException extends RuntimeException {
    public ConfigErrorException() {
        super();
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy