AcExceptionsHandler::report PHP Method

report() public method

This is a great spot to send exceptions to Sentry, Bugsnag, etc.
public report ( Exception $e ) : void
$e Exception
return void
    public function report(Exception $e)
    {
        if (is_a($e, 'Efficiently\\AuthorityController\\Exceptions\\AccessDenied')) {
            throw $e;
        }
        parent::report($e);
    }
AcExceptionsHandler