blob: f97bca01d94f7f8d71b764a8da0e050525d686c2 (
plain) (
tree)
|
|
<?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
{
}
|