You are here

public function ServiceCircularReferenceException::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php \Symfony\Component\DependencyInjection\Exception\ServiceCircularReferenceException::__construct()

File

vendor/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php, line 24

Class

ServiceCircularReferenceException
This exception is thrown when a circular reference is detected.

Namespace

Symfony\Component\DependencyInjection\Exception

Code

public function __construct($serviceId, array $path, \Exception $previous = null) {
  parent::__construct(sprintf('Circular reference detected for service "%s", path: "%s".', $serviceId, implode(' -> ', $path)), 0, $previous);
  $this->serviceId = $serviceId;
  $this->path = $path;
}