Symfony Exception

NotFoundHttpException

HTTP 404 Not Found

Not Found!

Exception

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.      * If customer is playing with url and no result is found then what will happen
  2.      * @return 
  3.      */
  4.     protected function noResultFound()
  5.     {
  6.         throw new NotFoundHttpException('Not Found!');
  7.     }
  8. }
  1.         } else {
  2.             $article $articleRepository->findOneBy(['status' => 1,'slug' => $request->attributes->get('slug')]);
  3.         }
  4.        
  5.         if (empty($article)) {
  6.             $this->noResultFound();
  7.         }
  8.         $article->setViewed((int) $article->getViewed() + 1);
  9.         
  10.         // Log article view
  11.         $articleViewLog = new ArticleViewLog();
in vendor/symfony/http-kernel/HttpKernel.php->viewArticle (line 151)
  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.     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 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/uvdesk/support-center-bundle/Controller/Website.php:426
  at Webkul\UVDesk\SupportCenterBundle\Controller\Website->noResultFound()
     (vendor/uvdesk/support-center-bundle/Controller/Website.php:283)
  at Webkul\UVDesk\SupportCenterBundle\Controller\Website->viewArticle(object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:151)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:68)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:198)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:25)