NotFoundExceptionInterface.php 158 B

12345678910
  1. <?php
  2. namespace Psr\Container;
  3. /**
  4. * No entry was found in the container.
  5. */
  6. interface NotFoundExceptionInterface extends ContainerExceptionInterface
  7. {
  8. }