com.hn.config.exception.ConfigException Maven / Gradle / Ivy
package com.hn.config.exception;
/**
* 描述:
* 配置异常
*
* @author shilvfei
* 2019-01-10 19:13
*/
public class ConfigException extends RuntimeException {
public ConfigException() {
}
public ConfigException(String message) {
super(message);
}
public ConfigException(String message, Throwable cause) {
super(message, cause);
}
public static ConfigException exception(String message){
return new ConfigException(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy