com.zopen.wechat.exception.WechatException 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.wechat.exception;
import com.zcj.web.exception.BusinessException;
/**
* 调用微信接口时出现的异常
*
* @author [email protected]
* @since 2019/8/24
*/
public class WechatException extends BusinessException {
private static final long serialVersionUID = 1L;
public WechatException() {
}
public WechatException(String message) {
super(message);
}
public WechatException(String message, Throwable cause) {
super(message, cause);
}
public WechatException(Throwable cause) {
super(cause);
}
}