<?php  namespace Symfony\Component\DependencyInjection\Exception;  class ServiceCircularReferenceException extends RuntimeException { public function __construct( private string $serviceId, private array $path, ?\Throwable $previous = null, ) { parent::__construct(\sprintf('Circular reference detected for service "%s", path: "%s".', $serviceId, implode(' -> ', $path)), 0, $previous); } public function getServiceId(): string { return $this->serviceId; } public function getPath(): array { return $this->path; } }