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

com.zopen.aliyun.exception.AliyunException Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.zopen.aliyun.exception;

import com.zcj.web.exception.BusinessException;

/**
 * 调用阿里云接口时出现的异常
 *
 * @author [email protected]
 * @since 2020/03/03
 */
public class AliyunException extends BusinessException {

    private static final long serialVersionUID = 1L;

    public AliyunException() {
    }

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy