You are here

class InactiveScopeException in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Exception/InactiveScopeException.php \Symfony\Component\DependencyInjection\Exception\InactiveScopeException

This exception is thrown when you try to create a service of an inactive scope.

@author Johannes M. Schmitt <schmittjoh@gmail.com>

Hierarchy

Expanded class hierarchy of InactiveScopeException

13 files declare their use of InactiveScopeException
Container.php in vendor/symfony/dependency-injection/Container.php
ContainerBuilder.php in vendor/symfony/dependency-injection/ContainerBuilder.php
ContainerBuilderTest.php in vendor/symfony/dependency-injection/Tests/ContainerBuilderTest.php
ContainerTest.php in vendor/symfony/dependency-injection/Tests/ContainerTest.php
services1-1.php in vendor/symfony/dependency-injection/Tests/Fixtures/php/services1-1.php

... See full list

File

vendor/symfony/dependency-injection/Exception/InactiveScopeException.php, line 19

Namespace

Symfony\Component\DependencyInjection\Exception
View source
class InactiveScopeException extends RuntimeException {
  private $serviceId;
  private $scope;
  public function __construct($serviceId, $scope, \Exception $previous = null) {
    parent::__construct(sprintf('You cannot create a service ("%s") of an inactive scope ("%s").', $serviceId, $scope), 0, $previous);
    $this->serviceId = $serviceId;
    $this->scope = $scope;
  }
  public function getServiceId() {
    return $this->serviceId;
  }
  public function getScope() {
    return $this->scope;
  }

}

Members