We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70884c5 commit 11136fbCopy full SHA for 11136fb
src/Handlers/AbstractHandler.php
@@ -2,6 +2,7 @@
2
3
namespace SMartins\Exceptions\Handlers;
4
5
+use Throwable;
6
use Exception;
7
use Illuminate\Auth\Access\AuthorizationException;
8
use Illuminate\Auth\AuthenticationException;
@@ -55,7 +56,7 @@ abstract class AbstractHandler
55
56
*
57
* @param Exception $e
58
*/
- public function __construct(Exception $e)
59
+ public function __construct(Throwable $e)
60
{
61
$this->exception = $e;
62
}
0 commit comments