package org.yeshi.utils.exception; /** * 微信小程序异常 * @author Administrator * */ public class WXMPException extends Exception { private static final long serialVersionUID = 1L; private int code; private String msg; public int getCode() { return code; } public String getMsg() { return msg; } public WXMPException(int code, String msg) { this.code = code; this.msg = msg; } public WXMPException() { } @Override public String getMessage() { return this.msg; } }