Exceptions
Exception
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
*
* throw $this->createNotFoundException('Page not found!');
*/
protected function createNotFoundException(string $message = 'Not Found', \Throwable $previous = null): NotFoundHttpException
{
return new NotFoundHttpException($message, $previous);
}
/**
* Returns an AccessDeniedException.
*
AbstractController->createNotFoundException()
in
src/Controller/Frontend/InfografikController.php
(line 182)
$pdfPath = $uploads_directory . '/'.'publikasi'.'/' . substr($dokumen[0]->getPath(), 0, 25);
echo 'check :', $pdfPath;
// Check if the file exists
if (!file_exists($pdfPath)) {
throw $this->createNotFoundException('The PDF file does not exist');
}
dump($pdfPath);
exit;
// Create a BinaryFileResponse to download the PDF file
// $response = new BinaryFileResponse($pdfPath);
in
vendor/symfony/http-kernel/HttpKernel.php
->
pdf
(line 163)
$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);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
Debug::enable();
}
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Stack Trace
NotFoundHttpException
|
---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException: The PDF file does not exist at vendor/symfony/framework-bundle/Controller/AbstractController.php:340 at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->createNotFoundException() (src/Controller/Frontend/InfografikController.php:182) at App\Controller\Frontend\InfografikController->pdf() (vendor/symfony/http-kernel/HttpKernel.php:163) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle() (public/index.php:20) |