All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.payingcloud.umf.UmfException Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy