123456789101112131415161718192021222324252627282930 |
- <?php
- /*
- * +----------------------------------------------------------------------+
- * | xiegeng admin system |
- * +----------------------------------------------------------------------+
- * | Administrator-13:40-2022-PhpStorm
- * +----------------------------------------------------------------------+
- * | Author: xiegeng <957723538@qq.com> |
- * | FILENAME: ExceptionHandle.php |
- * +----------------------------------------------------------------------+
- */
- namespace app;
- use think\exception\Handle;
- use Throwable;
- class ExceptionHandle extends Handle {
- protected function convertExceptionToArray(Throwable $exception): array
- {
- if($this->app->isDebug()){
- return [
- 'code' => $this->getCode($exception),
- 'message' => $this->getMessage($exception),
- 'info' => $this->getMessage($exception),
- 'traces' => [],
- ];
- }
- return parent::convertExceptionToArray($exception); // TODO: Change the autogenerated stub
- }
- }
|