NotFoundException.php 367 B

1234567891011121314151617181920
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * Holds the PhpMyAdmin\Di\NotFoundException class
  5. *
  6. * @package PhpMyAdmin\Di
  7. */
  8. namespace PhpMyAdmin\Di;
  9. use Psr\Container\NotFoundExceptionInterface;
  10. /**
  11. * Class NotFoundException
  12. *
  13. * @package PhpMyAdmin\Di
  14. */
  15. class NotFoundException extends ContainerException implements NotFoundExceptionInterface
  16. {
  17. }