You are here

public function ExceptionContainer::get in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/FunctionalTests/Bootstrap/ExceptionContainer.php \Drupal\FunctionalTests\Bootstrap\ExceptionContainer::get()
  2. 9 core/tests/Drupal/FunctionalTests/Bootstrap/ExceptionContainer.php \Drupal\FunctionalTests\Bootstrap\ExceptionContainer::get()

File

core/tests/Drupal/FunctionalTests/Bootstrap/ExceptionContainer.php, line 16

Class

ExceptionContainer
Base container which throws an exception.

Namespace

Drupal\FunctionalTests\Bootstrap

Code

public function get($id, $invalidBehavior = ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE) : ?object {
  if ($id === 'http_kernel') {
    throw new \Exception('Thrown exception during Container::get');
  }
  else {
    return parent::get($id, $invalidBehavior);
  }
}