|
1
|
<?php |
|
2
|
|
|
3
|
namespace Psr\Cache; |
|
4
|
|
|
5
|
/** |
|
6
|
* Exception interface for invalid cache arguments.
|
|
7
|
*
|
|
8
|
* Any time an invalid argument is passed into a method it must throw an
|
|
9
|
* exception class which implements Psr\Cache\InvalidArgumentException.
|
|
10
|
*/ |
|
11
|
interface InvalidArgumentException extends CacheException |
|
12
|
{ |
|
13
|
} |
|
14
|
|