Orno\Route\Dispatcher::handleNotFound PHP Méthode

handleNotFound() protected méthode

Handle a not found route
protected handleNotFound ( ) : Orno\Http\ResponseInterface
Résultat Orno\Http\ResponseInterface
    protected function handleNotFound()
    {
        $exception = new HttpException\NotFoundException();
        if ($this->getStrategy() === RouteStrategyInterface::RESTFUL_STRATEGY) {
            return $exception->getJsonResponse();
        }
        throw $exception;
    }