添加客服消息接口

This commit is contained in:
Daniel Qian
2014-08-18 16:48:20 +08:00
parent a2b13ab8cb
commit 2f6003bae0
26 changed files with 1872 additions and 0 deletions

View File

@ -0,0 +1,21 @@
package chanjarster.weixin.exception;
import chanjarster.weixin.in.WxError;
public class WxErrorException extends Exception {
private static final long serialVersionUID = -6357149550353160810L;
private WxError error;
public WxErrorException(WxError error) {
super(error.toString());
this.error = error;
}
public WxError getError() {
return error;
}
}