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

com.zopen.wechat.exception.WechatException Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy