123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- namespace app\api;
- use crmeb\exceptions\SiteException;
- use crmeb\exceptions\UtilException;
- use think\db\exception\DbException;
- use think\exception\Handle;
- use think\Response;
- use Throwable;
- class ApiExceptionHandle extends Handle
- {
-
- public function report(Throwable $exception): void
- {
-
- parent::report($exception);
- }
-
- public function render($request, Throwable $e): Response
- {
-
- if ($e instanceof DbException) {
- return app('json')->fail('数据获取失败', [
- 'file' => $e->getFile(),
- 'message' => $e->getMessage(),
- 'line' => $e->getLine(),
- 'trace' => $e->getTrace(),
- ]);
- } elseif ($e instanceof SiteException || $e instanceof UtilException) {
- return app('json')->fail($e->getMessage());
- } else {
- return app('json')->fail($e->getMessage());
- }
- }
- }
|