com.github.sd4324530.fastweixin.exception.WeixinException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastweixin Show documentation
Show all versions of fastweixin Show documentation
quickly department weixin server
package com.github.sd4324530.fastweixin.exception;
/**
* 微信API处理异常
*
* @author peiyu
*/
public class WeixinException extends RuntimeException {
public WeixinException() {
super();
}
public WeixinException(String message) {
super(message);
}
public WeixinException(String message, Throwable cause) {
super(message, cause);
}
public WeixinException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy