You are here

class ServiceNotFoundException in Zircon Profile 8

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

This exception is thrown when a non-existent service is requested.

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

Hierarchy

Expanded class hierarchy of ServiceNotFoundException

5 files declare their use of ServiceNotFoundException
CheckExceptionOnInvalidReferenceBehaviorPass.php in vendor/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php
Container.php in vendor/symfony/dependency-injection/Container.php
Container.php in core/lib/Drupal/Component/DependencyInjection/Container.php
Contains \Drupal\Component\DependencyInjection\Container.
ContainerInterface.php in vendor/symfony/dependency-injection/ContainerInterface.php
ImageStyle.php in core/modules/image/src/Entity/ImageStyle.php
Contains \Drupal\image\Entity\ImageStyle.

File

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

Namespace

Symfony\Component\DependencyInjection\Exception
View source
class ServiceNotFoundException extends InvalidArgumentException {
  private $id;
  private $sourceId;
  public function __construct($id, $sourceId = null, \Exception $previous = null, array $alternatives = array()) {
    if (null === $sourceId) {
      $msg = sprintf('You have requested a non-existent service "%s".', $id);
    }
    else {
      $msg = sprintf('The service "%s" has a dependency on a non-existent service "%s".', $sourceId, $id);
    }
    if ($alternatives) {
      if (1 == count($alternatives)) {
        $msg .= ' Did you mean this: "';
      }
      else {
        $msg .= ' Did you mean one of these: "';
      }
      $msg .= implode('", "', $alternatives) . '"?';
    }
    parent::__construct($msg, 0, $previous);
    $this->id = $id;
    $this->sourceId = $sourceId;
  }
  public function getId() {
    return $this->id;
  }
  public function getSourceId() {
    return $this->sourceId;
  }

}

Members