jiangping
2025-02-19 da045f4ac67ac3d4f55b2dd34e9a59fb7afc0c58
server/web/src/main/java/com/doumee/jtt808/web/controller/ExceptionController.java
@@ -29,11 +29,11 @@
    private static final Pattern compile = Pattern.compile("'\\w*'");
    @ExceptionHandler(Exception.class)
    public APIResult<?> onException(Exception e) {
        log.error("系统异常", e);
        return new APIResult<>(e);
    }
//    @ExceptionHandler(Exception.class)
//    public APIResult<?> onException(Exception e) {
//        log.error("系统异常", e);
//        return new APIResult<>(e);
//    }
    @ExceptionHandler(APIException.class)
    public APIResult<?> onAPIException(APIException e) {