me.chanjar.weixin.common.error.WxRuntimeException Maven / Gradle / Ivy
The newest version!
package me.chanjar.weixin.common.error;
/**
* WxJava专用的runtime exception.
*
* @author Binary Wang
* created on 2020-09-26
*/
public class WxRuntimeException extends RuntimeException {
private static final long serialVersionUID = 4881698471192264412L;
public WxRuntimeException(Throwable e) {
super(e);
}
public WxRuntimeException(String msg) {
super(msg);
}
public WxRuntimeException(String msg, Throwable e) {
super(msg, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy