https://datefix.hotze-fussball.de/js/kalender/detail/27001

Exceptions

Kein Termin gefunden mit ID 27001

  • Exception
  • Logs
  • Stack Trace

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('Kein Termin gefunden mit ID 27001') in src/Controller/DfxKalenderController.php (line 829)
  1.     {
  2.         $em $this->Doctrine->getManager();
  3.         $termin $em->getRepository('App\Entity\DfxTermine')->find($id);
  4.         if (!$termin) {
  5.             throw $this->createNotFoundException(
  6.                 'Kein Termin gefunden mit ID ' $id
  7.             );
  8.         }
  9.         $konf $termin->getDatefix();
  10.         $kid $konf->getId();
in vendor/symfony/http-kernel/HttpKernel.php -> terminShowAction (line 153)
  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 web/index.php (line 23)
  1.         Request::setTrustedHosts([$trustedHosts]);
  2.     }
  3.     define('STDIN',fopen("php://stdin","r"));
  4.     $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  5.     $request Request::createFromGlobals();
  6.     $response $kernel->handle($request);
  7.     $response->send();
  8.     $kernel->terminate($request$response);
  9. }else{
  10.     $host  $_SERVER['HTTP_HOST'];
  11.     $uri   rtrim(dirname($_SERVER['PHP_SELF']), '/\\');