| | |
| | | package com.yeshi.fanli.exception.user;
|
| | |
|
| | | import com.yeshi.fanli.exception.BaseException;
|
| | |
|
| | | public class UserAccountException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public UserAccountException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public UserAccountException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | | package com.yeshi.fanli.exception.user; |
| | | |
| | | import com.yeshi.fanli.exception.BaseException; |
| | | |
| | | public class UserAccountException extends BaseException { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | //需要绑定手机号 |
| | | public final static int CODE_NEED_BIND_PHONE = 101; |
| | | |
| | | //需要绑定微信 |
| | | public final static int CODE_NEED_BIND_WX = 102; |
| | | |
| | | public UserAccountException(int code, String msg) { |
| | | super(code, msg); |
| | | } |
| | | |
| | | public UserAccountException() { |
| | | super(); |
| | | } |
| | | } |