wxr
2022-11-24 2af932533ef851bf983385244e9912976dbd4daa
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.mm.android.deviceaddmodule.mobilecommon.businesstip;
 
 
public class SMBErrorCode {
    public static final int SUCCESS = 10000;    //成功
 
    //踢出相关错误码
    public static final int REQUEST_AUTHORITY_ERROR = 10001;    //鉴权服务异常
    public static final int REQUEST_INVALID_TOKEN = 10003;    //无效的登录信息
    public static final int REQUEST_LOGIN_EXPIRED = 10005;    //登录过期
    public static final int REQUEST_SIGNATURE_FORMAT_ERROR = 10015;    //接口签名类型不合规
 
}