com.github.ltsopensource.monitor.CfgException Maven / Gradle / Ivy
package com.github.ltsopensource.monitor;
/**
* @author Robert HG ([email protected]) on 3/10/16.
*/
public class CfgException extends RuntimeException {
public CfgException(String message) {
super(message);
}
public CfgException(String message, Throwable cause) {
super(message, cause);
}
public CfgException(Throwable cause) {
super(cause);
}
}