https://dev.eh65-haribo-front.web.oxv.fr/offre-de-remboursement/inscription-au-club

Exceptions

HTTP/2 404 returned for "https://dev.eh65-haribo-backend.web.oxv.fr/api/public/odr/".

  • Exception
  • Logs
  • Stack Trace

Symfony\Component\HttpClient\Exception\ ClientException

  1.         if (500 <= $code) {
  2.             throw new ServerException($this);
  3.         }
  4.         if (400 <= $code) {
  5.             throw new ClientException($this);
  6.         }
  7.         if (300 <= $code) {
  8.             throw new RedirectionException($this);
  9.         }
  1.         } finally {
  2.             if ($this->event && $this->event->isStarted()) {
  3.                 $this->event->stop();
  4.             }
  5.             if ($throw) {
  6.                 $this->checkStatusCode($this->response->getStatusCode());
  7.             }
  8.         }
  9.     }
  10.     public function toArray(bool $throw true): array
TraceableResponse->getContent() in src/Service/APIKiwi.php (line 99)
  1.             );
  2.         } catch (\Exception $e) {
  3.             throw new \Exception($e->getMessage());
  4.         }
  5.         return new Response($response->getContent(), $response->getStatusCode());
  6.     }
  7.     /**
  8.      * @throws TransportExceptionInterface
  9.      */
APIKiwi->getPublicKiwi('odr/') in src/Controller/Participation/OdrController.php (line 74)
  1.             } catch (Exception $e) {
  2.                 $this->logger->error(sprintf('%s : %s'get_class($e), $e->getMessage()), $e->getTrace());
  3.                 $this->addFlash('warning'$this->translator->trans('api.validation.errors.generic', [], 'api'));
  4.             }
  5.         }
  6.         $odrResp $this->APIKiwi->getPublicKiwi('odr/'$this->requestStack->getSession()->get('kiwi_operation_odr_id'));
  7.         return $this->render('operation/odr/register_from_odr.html.twig', [
  8.             'form' => $form->createView(),
  9.             'odr' => $this->deserialize($odrResp->getContent(), Odr::class, 'get_odr'),
  10.         ]);
in vendor/symfony/http-kernel/HttpKernel.php -> registerOdrOffer (line 163)
  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.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 35)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/eh65_haribo_frontdev/current/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };