Orno\Route\Dispatcher::handleNotFound PHP Method

handleNotFound() protected method

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