소스 검색

refactor(Exception): 更新 NotFoundException 异常处理

- 在 NotFoundException 类中引入 error_response 函数
-优化异常处理逻辑,提高错误响应的可定制性
runphp 6 달 전
부모
커밋
3546a86e77
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/Exception/ExceptionHandle.php

+ 1 - 0
src/Exception/ExceptionHandle.php

@@ -8,6 +8,7 @@ use think\exception\ValidateException;
 use think\Request;
 use think\Response;
 use Throwable;
+use function SixShop\Core\error_response;
 
 class ExceptionHandle extends Handle
 {