-
Notifications
You must be signed in to change notification settings - Fork 25
/
errorCode.js
52 lines (52 loc) · 2.38 KB
/
errorCode.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
var errorCode = new Array();
errorCode[100] = "网络错误或服务器繁忙";
errorCode[101] = "会话已过期,请重新登录";
errorCode[102] = "已经在其它地方登录,请求被拒绝";
errorCode[103] = "非法请求";
errorCode[104] = "参数错误";
errorCode[105] = "登录次数过多";
errorCode[106] = "操作次数过多";
errorCode[107] = "查询失败,不存在的账户";
errorCode[108] = "密码问题回答错误";
errorCode[109] = "查询失败";
errorCode[200] = "证件号或密码错误";
errorCode[201] = "此证件号已被删除";
errorCode[202] = "注册请求不被接受";
errorCode[203] = "此证件号已经被注册";
errorCode[204] = "注册请求执行错误";
errorCode[205] = "报名尚未开始";
errorCode[206] = "报名已经结束";
errorCode[207] = "此手机号码已经被注册";
errorCode[208] = "此电子邮箱地址已经被注册";
errorCode[209] = "短信验证码不正确或已过期";
errorCode[210] = "更新考生信息请求执行失败";
errorCode[211] = "删除考生信息请求执行失败";
errorCode[212] = "两次密码输入不符";
errorCode[213] = "更新报名表请求执行失败";
errorCode[214] = "母语代码输入不正确";
errorCode[215] = "用户名或密码错误次数过多,账户被锁定";
errorCode[216] = "用户名或密码错误次数过多,账户被锁定30分钟";
errorCode[217] = "上传照片功能关闭";
errorCode[250] = "请输入您的证件号";
errorCode[251] = "您输入的证件号不存在";
errorCode[252] = "更改座位请求无法被执行";
errorCode[300] = "加入队列失败";
errorCode[301] = "此级别不允许定座";
errorCode[303] = "提交的考生id与缓存中不一致";
errorCode[304] = "考生已经预定了座位";
errorCode[305] = "验证码过期";
errorCode[306] = "验证码输入错误,请重新输入";
errorCode[307] = "不符合更改考点条件";
errorCode[308] = "更改考点请求不被接受";
errorCode[310] = "请求排队中...";
errorCode[311] = "无定座请求";
errorCode[313] = "该考点已无剩余座位";
errorCode[314] = "错误的定座请求";
errorCode[315] = "缓存不同步";
errorCode[316] = "查询重试";
errorCode[317] = "查询重试次数过多";
errorCode[320] = "错误的取消预定请求";
errorCode[321] = "取消请求不被接受";
errorCode[330] = "验证签名错误";
errorCode[331] = "无效的登录状态";
errorCode[332] = "更新照片失败";