File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/symfony/routing/Exception
Upload
[..]
ExceptionInterface.php (430 B)
Edit
Rename
Del
InvalidArgumentException.php (385 B)
Edit
Rename
Del
InvalidParameterException.php (506 B)
Edit
Rename
Del
LogicException.php (335 B)
Edit
Rename
Del
MethodNotAllowedException.php (1.1 KB)
Edit
Rename
Del
MissingMandatoryParametersException.php (1.36 KB)
Edit
Rename
Del
NoConfigurationException.php (465 B)
Edit
Rename
Del
ResourceNotFoundException.php (548 B)
Edit
Rename
Del
RouteCircularReferenceException.php (559 B)
Edit
Rename
Del
RouteNotFoundException.php (501 B)
Edit
Rename
Del
RuntimeException.php (369 B)
Edit
Rename
Del
Edit: RouteCircularReferenceException.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Routing\Exception; 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))); } }
Simpan