ContainerException.php 300 B

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