ContainerNotInitializedException.php 264 B

12345678910111213
  1. <?php
  2. namespace Drupal\Core\DependencyInjection;
  3. /**
  4. * Exception thrown when a method is called that requires a container, but the
  5. * container is not initialized yet.
  6. *
  7. * @see \Drupal
  8. */
  9. class ContainerNotInitializedException extends \RuntimeException {
  10. }