fix:81630

This commit is contained in:
梁琦涛
2024-02-01 17:34:18 +08:00
parent 2f431fa991
commit 059961d317
@@ -54,7 +54,7 @@ public class JeroBootExceptionHandler {
@ExceptionHandler(Exception.class)
public Result<T> handleException(Exception e){
log.error(e.getMessage(), e);
return Result.error("操作失败"+e.getMessage());
return Result.error("操作失败");
}
/**