Skip to content

Commit

Permalink
fix:ServerErrorHttpException
Browse files Browse the repository at this point in the history
  • Loading branch information
Tinywan committed Dec 28, 2023
1 parent 35edbe3 commit d5c21ef
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ protected function solveAllException(Throwable $e)
if (isset($e->data)) {
$this->responseData = array_merge($this->responseData, $e->data);
}
if (!$e instanceof ServerErrorHttpException) {
return;
}
}
$this->solveExtraException($e);
}
Expand Down

0 comments on commit d5c21ef

Please sign in to comment.