Exclude some errors from reporting

This commit is contained in:
David Bomba 2020-08-19 16:35:35 +10:00
parent 77ecca3035
commit c1da36477e

View File

@ -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
];
/**