InactiveScopeException.php in Service Container 7.2
File
modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Exception/InactiveScopeException.php
View source
<?php
namespace Symfony\Component\DependencyInjection\Exception;
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;
}
}