ContainerException.php 378 B

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