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

io.github.biezhi.wechat.exception.WeChatException Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package io.github.biezhi.wechat.exception;

/**
 * 微信运行时异常
 *
 * @author biezhi
 * @date 2018/1/19
 */
public class WeChatException extends RuntimeException {

    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