NotInContainerException.php 303 B

1234567891011121314
  1. <?php
  2. declare(strict_types=1);
  3. namespace Faker\Extension;
  4. use Psr\Container\NotFoundExceptionInterface;
  5. /**
  6. * @experimental This class is experimental and does not fall under our BC promise
  7. */
  8. final class NotInContainerException extends \RuntimeException implements NotFoundExceptionInterface
  9. {
  10. }