cn.payingcloud.umf.UmfException Maven / Gradle / Ivy
package cn.payingcloud.umf;
public class UmfException extends RuntimeException {
public UmfException(String message) {
super(message);
}
public UmfException(String message, Throwable cause) {
super(message, cause);
}
public UmfException(Throwable cause) {
super(cause);
}
}