补全文档

This commit is contained in:
click33 2023-05-18 18:47:20 +08:00
parent b38f1e06eb
commit fa16d9c5e1

View File

@ -15,6 +15,7 @@
| -4 | NotLoginException.BE_REPLACED | 已读取到 token但是 token 已被顶下线 |
| -5 | NotLoginException.KICK_OUT | 已读取到 token但是 token 已被踢下线 |
| -6 | NotLoginException.TOKEN_FREEZE | 已读取到 token但是 token 已被冻结 |
| -7 | NotLoginException.NO_PREFIX | 未按照指定前缀提交 token |
@ -50,6 +51,9 @@ public SaResult handlerNotLoginException(NotLoginException nle)
else if(nle.getType().equals(NotLoginException.TOKEN_FREEZE)) {
message = "token 已被冻结";
}
else if(nle.getType().equals(NotLoginException.NO_PREFIX)) {
message = "未按照指定前缀提交 token";
}
else {
message = "当前会话未登录";
}