Symfony Exception

NotFoundHttpException

HTTP 404 Not Found

Not Found

Exception

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.      *
  2.      *     throw $this->createNotFoundException('Page not found!');
  3.      */
  4.     protected function createNotFoundException(string $message 'Not Found', ?\Throwable $previous null): NotFoundHttpException
  5.     {
  6.         return new NotFoundHttpException($message$previous);
  7.     }
  8.     /**
  9.      * Returns an AccessDeniedException.
  10.      *
AbstractController->createNotFoundException() in src/Controller/Web/FlatPageController.php (line 71)
  1.         foreach ($flatpagesTemplateList as $template) {
  2.             if ($this->translator->trans($template) == $pagename) {
  3.                 return $template;
  4.             }
  5.         }
  6.         throw $this->createNotFoundException();
  7.     }
  8. }
FlatPageController->getTemplate('www.ecocert.ch') in src/Controller/Web/FlatPageController.php (line 27)
  1.      * @return Response
  2.      */
  3.     public function index(Request $requestUnauthorizedReferenceRepository $referenceRepository$pagename)
  4.     {
  5.         /* récupère le nom du template a partir du nom de page fourni $pagename */
  6.         $pagename $this->getTemplate($pagename);
  7.         $viewParams = [
  8.             'bodyClass' => 'flatpage_' $pagename,
  9.             'bodyAdditionalClass' => 'noHeaderImg',
  10.             'headerClass' => 'noHeaderImg',
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 25)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

No log messages

Stack Trace

NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
Not Found

  at vendor/symfony/framework-bundle/Controller/AbstractController.php:340
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->createNotFoundException()
     (src/Controller/Web/FlatPageController.php:71)
  at App\Controller\Web\FlatPageController->getTemplate('www.ecocert.ch')
     (src/Controller/Web/FlatPageController.php:27)
  at App\Controller\Web\FlatPageController->index(object(Request), object(UnauthorizedReferenceRepository), 'www.ecocert.ch')
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:25)