com.feingto.cloud.exception.MonitorException Maven / Gradle / Ivy
package com.feingto.cloud.exception;
/**
* 监控异常
*
* @author longfei
*/
public class MonitorException extends ClientException {
private static final long serialVersionUID = 2146209713301709443L;
public MonitorException() {
super();
}
public MonitorException(String message) {
super(message);
}
public MonitorException(Throwable cause) {
super(cause);
}
public MonitorException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy