admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/exception/user/BindingAccountException.java
@@ -1,29 +1,29 @@
package com.yeshi.fanli.exception.user;
import com.yeshi.fanli.exception.BaseException;
public class BindingAccountException extends BaseException {
   private static final long serialVersionUID = 9044535997260029818L;
   // 账户不可抵达
   public static int CODE_ACCOUNT_UNARRIVE = 1;
   // 账户出错
   public static int CODE_ACCOUNT_ERROR = 2;
   // 其他未知错误
   public static int CODE_OTHER_ERROR = 3;
   public BindingAccountException(int code, String msg) {
      super(code, msg);
   }
   public BindingAccountException(String msg) {
      super(msg);
   }
   public BindingAccountException() {
      super();
   }
}
package com.yeshi.fanli.exception.user;
import com.yeshi.fanli.exception.BaseException;
public class BindingAccountException extends BaseException {
   private static final long serialVersionUID = 9044535997260029818L;
   // 账户不可抵达
   public static int CODE_ACCOUNT_UNARRIVE = 1;
   // 账户出错
   public static int CODE_ACCOUNT_ERROR = 2;
   // 其他未知错误
   public static int CODE_OTHER_ERROR = 3;
   public BindingAccountException(int code, String msg) {
      super(code, msg);
   }
   public BindingAccountException(String msg) {
      super(msg);
   }
   public BindingAccountException() {
      super();
   }
}