错误信息语句不通顺 #6643

pull/6667/head
JEECG 2024-06-25 13:51:21 +08:00
parent e7dfe5cdc3
commit 5c4154941a
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ public class JeecgBootExceptionHandler {
@ExceptionHandler({UnauthorizedException.class, AuthorizationException.class})
public Result<?> handleAuthorizationException(AuthorizationException e){
log.error(e.getMessage(), e);
return Result.noauth("没有权限,请联系管理员授权,后刷新缓存!");
return Result.noauth("没有权限,请联系管理员授权后刷新缓存!");
}
@ExceptionHandler(Exception.class)

View File

@ -51,7 +51,7 @@ public class CommonController {
*/
@GetMapping("/403")
public Result<?> noauth() {
return Result.error("没有权限,请联系管理员授权,后刷新缓存!");
return Result.error("没有权限,请联系管理员授权后刷新缓存!");
}
/**