com.zopen.aliyun.exception.AliyunException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zopen-ato-starter Show documentation
Show all versions of zopen-ato-starter Show documentation
Alibaba Tencent And Others For Spring Boot.
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);
}
}