Files
arif_grafin/pma/vendor/psr/cache/src/InvalidArgumentException.php
dev@siliconpin.com a3067c5ad4 first commit
2025-08-07 11:53:41 +05:30

14 lines
299 B
PHP

<?php
namespace Psr\Cache;
/**
* Exception interface for invalid cache arguments.
*
* Any time an invalid argument is passed into a method it must throw an
* exception class which implements Psr\Cache\InvalidArgumentException.
*/
interface InvalidArgumentException extends CacheException
{
}