com.dxy.library.util.config.exception.ConfigException Maven / Gradle / Ivy
package com.dxy.library.util.config.exception;
/**
* @author duanxinyuan
* 2020/1/13 20:56
*/
public class ConfigException extends RuntimeException {
public ConfigException() {
super();
}
public ConfigException(String message) {
super(message);
}
public ConfigException(String message, Throwable cause) {
super(message, cause);
}
public ConfigException(Throwable cause) {
super(cause);
}
protected ConfigException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy