ExceptionHandle.php 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /*
  3. * +----------------------------------------------------------------------+
  4. * | xiegeng admin system |
  5. * +----------------------------------------------------------------------+
  6. * | Administrator-13:40-2022-PhpStorm
  7. * +----------------------------------------------------------------------+
  8. * | Author: xiegeng <957723538@qq.com> |
  9. * | FILENAME: ExceptionHandle.php |
  10. * +----------------------------------------------------------------------+
  11. */
  12. namespace app;
  13. use think\exception\Handle;
  14. use Throwable;
  15. class ExceptionHandle extends Handle {
  16. protected function convertExceptionToArray(Throwable $exception): array
  17. {
  18. if($this->app->isDebug()){
  19. return [
  20. 'code' => $this->getCode($exception),
  21. 'message' => $this->getMessage($exception),
  22. 'info' => $this->getMessage($exception),
  23. 'traces' => [],
  24. ];
  25. }
  26. return parent::convertExceptionToArray($exception); // TODO: Change the autogenerated stub
  27. }
  28. }