class RouteCircularReferenceException
Hierarchy
- class \Symfony\Component\Routing\Exception\RuntimeException extends \Symfony\Component\Routing\Exception\RuntimeException implements \Symfony\Component\Routing\Exception\ExceptionInterface
- class \Symfony\Component\Routing\Exception\RuntimeException extends \Symfony\Component\Routing\Exception\RuntimeException implements \Symfony\Component\Routing\Exception\ExceptionInterface
- class \Symfony\Component\Routing\Exception\RouteCircularReferenceException extends \Symfony\Component\Routing\Exception\RuntimeException
- class \Symfony\Component\Routing\Exception\RuntimeException extends \Symfony\Component\Routing\Exception\RuntimeException implements \Symfony\Component\Routing\Exception\ExceptionInterface
Expanded class hierarchy of RouteCircularReferenceException
2 files declare their use of RouteCircularReferenceException
- CompiledUrlGeneratorDumper.php in vendor/
symfony/ routing/ Generator/ Dumper/ CompiledUrlGeneratorDumper.php - RouteCollection.php in vendor/
symfony/ routing/ RouteCollection.php
File
-
vendor/
symfony/ routing/ Exception/ RouteCircularReferenceException.php, line 14
Namespace
Symfony\Component\Routing\ExceptionView source
class RouteCircularReferenceException extends RuntimeException {
public function __construct(string $routeId, array $path) {
parent::__construct(\sprintf('Circular reference detected for route "%s", path: "%s".', $routeId, implode(' -> ', $path)));
}
}