InvalidArgumentException.php 496 B

123456789101112131415161718
  1. <?php declare (strict_types=1);
  2. namespace Sabre\Cache;
  3. /**
  4. * This exception is thrown if an invalid arugment is passed to one of the
  5. * caching functions, such as a non-string cache key.
  6. *
  7. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  8. * @author Evert Pot (https://evertpot.com/)
  9. * @license http://sabre.io/license/
  10. */
  11. class InvalidArgumentException
  12. extends \InvalidArgumentException // PHP built-in
  13. implements \Psr\SimpleCache\InvalidArgumentException // PSR-16
  14. {
  15. }