Exceptions
Exception
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
AbstractController->createNotFoundException('The page does not exist')
in
src/Controller/FrontController.php (line 640)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
Stack Trace
NotFoundHttpException |
---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException: The page does not exist at vendor/symfony/framework-bundle/Controller/ControllerTrait.php:293 at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->createNotFoundException('The page does not exist') (src/Controller/FrontController.php:640) at App\Controller\FrontController->page('en', '100-female-thalassotherapy-health-cure', object(Request), object(EntityManager)) (vendor/symfony/http-kernel/HttpKernel.php:158) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:80) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:201) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (public/index.php:25) |