Symfony Exception

NotFoundHttpException

HTTP 404 Not Found

The "product" has not been found

Exception

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.      * @throws NotFoundHttpException
  2.      */
  3.     protected function findOr404(RequestConfiguration $configuration): ResourceInterface
  4.     {
  5.         if (null === $resource $this->singleResourceProvider->get($configuration$this->repository)) {
  6.             throw new NotFoundHttpException(sprintf('The "%s" has not been found'$this->metadata->getHumanizedName()));
  7.         }
  8.         return $resource;
  9.     }
  10. }
  1.     public function showAction(Request $request): Response
  2.     {
  3.         $configuration $this->requestConfigurationFactory->create($this->metadata$request);
  4.         $this->isGrantedOr403($configurationResourceActions::SHOW);
  5.         $resource $this->findOr404($configuration);
  6.         $this->eventDispatcher->dispatch(ResourceActions::SHOW$configuration$resource);
  7.         $view View::create($resource);
  1.         $this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS$event);
  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 GetResponseForControllerResultEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch(KernelEvents::VIEW$event);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level'ob_get_level());
  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 web/app.php (line 27)
  1. $kernel = new AppKernel('prod'true);
  2. //$kernel = new AppKernel('dev', true);
  3. $request Request::createFromGlobals();
  4. $response $kernel->handle($request);
  5. $response->send();
  6. $kernel->terminate($request$response);

Logs

No log messages

Stack Trace

NotFoundHttpException

Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
The "product" has not been found

  at vendor/sylius/sylius/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.php:535
  at Sylius\Bundle\ResourceBundle\Controller\ResourceController->findOr404(object(RequestConfiguration))
     (vendor/sylius/sylius/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.php:130)
  at Sylius\Bundle\ResourceBundle\Controller\ResourceController->showAction(object(Request))
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:150)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:67)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php:198)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (web/app.php:27)