diff options
Diffstat (limited to 'src/Exceptions/Handler.php')
-rw-r--r-- | src/Exceptions/Handler.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Exceptions/Handler.php b/src/Exceptions/Handler.php index 6e5b4749..c4fb639c 100644 --- a/src/Exceptions/Handler.php +++ b/src/Exceptions/Handler.php @@ -2,7 +2,7 @@ namespace Engelsystem\Exceptions; -use Exception; +use Throwable; class Handler { @@ -40,9 +40,9 @@ class Handler } /** - * @param Exception $e + * @param Throwable $e */ - public function exceptionHandler(Exception $e) + public function exceptionHandler(Throwable $e) { $this->handle( 'exception', |