yujian
2019-09-03 f5f8bc75d8636cd982d76fc31d3b244dec02dc8e
fanli/src/main/java/com/yeshi/fanli/exception/BindingAccountException.java
@@ -1,6 +1,6 @@
package com.yeshi.fanli.exception;
public class BindingAccountException extends Exception {
public class BindingAccountException extends BaseException {
   private static final long serialVersionUID = 9044535997260029818L;
   // 账户不可抵达
@@ -12,26 +12,16 @@
   // 其他未知错误
   public static int CODE_OTHER_ERROR = 3;
   private int code;
   private String msg;
   public int getCode() {
      return code;
   }
   public String getMsg() {
      return msg;
   }
   public BindingAccountException() {
   public BindingAccountException(int code, String msg) {
      super(code, msg);
   }
   public BindingAccountException(String msg) {
      super(msg);
   }
   public BindingAccountException(int code, String msg) {
      this.code = code;
      this.msg = msg;
   public BindingAccountException() {
      super();
   }
}