From c1da36477e25bec66ff298ee1b69f9075a0ae8e7 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 19 Aug 2020 16:35:35 +1000 Subject: [PATCH] Exclude some errors from reporting --- app/Exceptions/Handler.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index ba18615979f7..444bd6fb7aa5 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -37,6 +37,9 @@ class Handler extends ExceptionHandler */ protected $dontReport = [ \PDOException::class, + \Swift_TransportException::class, + \Illuminate\Queue\MaxAttemptsExceededException::class, + \Symfony\Component\Console\Exception\CommandNotFoundException::class ]; /**