CacheException.php
2 years ago
CacheInterface.php
2 years ago
InvalidArgumentException.php
2 years ago
InvalidArgumentException.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP_SCOPED\Psr\SimpleCache; |
| 4 | |
| 5 | /** |
| 6 | * Exception interface for invalid cache arguments. |
| 7 | * |
| 8 | * When an invalid argument is passed it must throw an exception which implements |
| 9 | * this interface |
| 10 | * @internal |
| 11 | */ |
| 12 | interface InvalidArgumentException extends CacheException |
| 13 | { |
| 14 | } |
| 15 |