exception.report

Triggered in October\Rain\Foundation\Exception\Handler.

Fired after the exception has been reported

Example usage (performs additional reporting on the exception)

Event::listen('exception.report', function (\Exception $exception) {
    App::make('sentry')->captureException($exception);
});