cn.tenmg.sqltool.exception.IllegalConfigException Maven / Gradle / Ivy
package cn.tenmg.sqltool.exception;
/**
* 非法配置异常
*
* @author 赵伟均 [email protected]
*
* @since 1.0.0
*/
public class IllegalConfigException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = -4981941372991563546L;
public IllegalConfigException() {
super();
}
public IllegalConfigException(String massage) {
super(massage);
}
public IllegalConfigException(Throwable cause) {
super(cause);
}
public IllegalConfigException(String massage, Throwable cause) {
super(massage, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy