Files
-S.I.S-QuaySo_v2/vendor/psr/simple-cache/src/InvalidArgumentException.php
T
2026-03-26 09:28:14 +07:00

14 lines
273 B
PHP

<?php
namespace Psr\SimpleCache;
/**
* Exception interface for invalid cache arguments.
*
* When an invalid argument is passed it must throw an exception which implements
* this interface
*/
interface InvalidArgumentException extends CacheException
{
}