1 | <?php |
||
12 | class InvalidArgumentException extends CacheException |
||
13 | { |
||
14 | const CODE = 1003; |
||
15 | |||
16 | /** |
||
17 | * CacheException constructor. |
||
18 | * |
||
19 | * @param string $argument |
||
20 | * @param string $expected |
||
21 | * @param string $value |
||
22 | * @param Exception|null $previous |
||
23 | */ |
||
24 | public function __construct($argument, $expected, $value, Exception $previous = null) |
||
31 | } |
||
32 |