vendor/babdev/pagerfanta-bundle/src/EventListener/ConvertNotValidCurrentPageToNotFoundListener.php line 11
<?php declare(strict_types=1);namespace BabDev\PagerfantaBundle\EventListener;use Pagerfanta\Exception\NotValidCurrentPageException;use Symfony\Component\HttpKernel\Event\ExceptionEvent;use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;final class ConvertNotValidCurrentPageToNotFoundListener{public function onKernelException(ExceptionEvent $event): void{$throwable = $event->getThrowable();if ($throwable instanceof NotValidCurrentPageException) {$event->setThrowable(new NotFoundHttpException('Page Not Found', $throwable));}}}