Barryvdh\Debugbar\Middleware\Debugbar::handleException PHP Метод

handleException() защищенный Метод

(Copy from Illuminate\Routing\Pipeline by Taylor Otwell)
protected handleException ( $passable, Exception $e ) : mixed
$passable
$e Exception
Результат mixed
    protected function handleException($passable, Exception $e)
    {
        if (!$this->container->bound(ExceptionHandler::class) || !$passable instanceof Request) {
            throw $e;
        }
        $handler = $this->container->make(ExceptionHandler::class);
        $handler->report($e);
        return $handler->render($passable, $e);
    }