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

cloud.chain.git.api.exception.GitApiException Maven / Gradle / Ivy

The newest version!
package cloud.chain.git.api.exception;

/**
 *  wuXiaoMing
 *  2023/2/10 11:11
 */
public class GitApiException extends RuntimeException{

    private static final String ERROR="发送失败";

    public GitApiException() {
         super(ERROR);
    }

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy