KKSU
2024-01-30 e30b02a52e2cd185b37e99669499be6a2aff53be
src/main/java/cc/mrbird/febs/common/handler/GlobalExceptionHandler.java
@@ -37,7 +37,8 @@
    @ExceptionHandler(value = Exception.class)
    public FebsResponse handleException(Exception e) {
        log.error("系统内部异常,异常信息", e);
        return new FebsResponse().code(HttpStatus.INTERNAL_SERVER_ERROR).message("系统内部异常");
//        return new FebsResponse().code(HttpStatus.INTERNAL_SERVER_ERROR).message("系统内部异常");
        return new FebsResponse().code(HttpStatus.INTERNAL_SERVER_ERROR).message("网络异常");
    }
    @ExceptionHandler(value = FebsException.class)