class 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

8 files declare their use of InactiveScopeException
Container.php in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Container.php
ContainerBuilder.php in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/ContainerBuilder.php
ContainerTest.php in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/ContainerTest.php
services1.php in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1.php
services10.php in drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services10.php

... See full list

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/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