Files
wp-multisite-waas/dependencies/psr/cache/src/InvalidArgumentException.php
2024-11-30 18:24:12 -07:00

14 lines
322 B
PHP

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