Skip to content

Commit afbadf6

Browse files
committed
use throwable
1 parent e850bcd commit afbadf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Foundation/Exceptions/Handler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ protected function renderExceptionContent(Throwable $e)
538538
return config('app.debug') && app()->has(ExceptionRenderer::class)
539539
? $this->renderExceptionWithCustomRenderer($e)
540540
: $this->renderExceptionWithSymfony($e, config('app.debug'));
541-
} catch (Exception $e) {
541+
} catch (Throwable $e) {
542542
return $this->renderExceptionWithSymfony($e, config('app.debug'));
543543
}
544544
}

0 commit comments

Comments
 (0)