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

com.github.azbh111.utils.java.promise.PromiseException Maven / Gradle / Ivy

package com.github.azbh111.utils.java.promise;

/**
 *
 * @author pyz
 * @date 2019/10/29 11:17 下午
 */
public class PromiseException extends RuntimeException{
    public PromiseException() {
    }

    public PromiseException(String message) {
        super(message);
    }

    public PromiseException(String message, Throwable cause) {
        super(message, cause);
    }

    public PromiseException(Throwable cause) {
        super(cause);
    }

    public PromiseException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy