com.github.azbh111.utils.java.promise.PromiseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
The newest version!
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);
}
}