2026-01-22 15:17:18 +00:00

14 lines
271 B
PHP

<?php
namespace TablePress\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
{
}