com.github.cloudecho.config.ConfigException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appconfig Show documentation
Show all versions of appconfig Show documentation
Application configuration utilities
The newest version!
package com.github.cloudecho.config;
/**
* 配置异常
*
* @author yong.ma
* @since 2013-07-01
*/
public class ConfigException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ConfigException() {
super();
}
public ConfigException(String message, Throwable cause) {
super(message, cause);
}
public ConfigException(String message) {
super(message);
}
public ConfigException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy