| * | 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 } }