cn.majingjing.config.client.exception.ConfigClientException Maven / Gradle / Ivy
The newest version!
package cn.majingjing.config.client.exception;
/**
* @author MaMarion
* @date 2020-04-11
*/
public class ConfigClientException extends RuntimeException {
public ConfigClientException() {
super();
}
public ConfigClientException(String message) {
super(message);
}
public ConfigClientException(String message, Throwable cause) {
super(message, cause);
}
public ConfigClientException(Throwable cause) {
super(cause);
}
protected ConfigClientException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy