| 1 | <?php |
||
| 16 | class CacheException extends Exception implements CacheExceptionInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @param string $name |
||
| 20 | * @return CacheException |
||
| 21 | */ |
||
| 22 | 1 | public static function adapterAlreadyExists($name) |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $name |
||
| 29 | * @return CacheException |
||
| 30 | */ |
||
| 31 | 1 | public static function adapterNameNotString($name) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @param string $name |
||
| 38 | * @return CacheException |
||
| 39 | */ |
||
| 40 | 4 | public static function adapterDoesNotExist($name) |
|
| 44 | |||
| 45 | /** @return CacheException */ |
||
| 46 | 1 | public static function defaultAdapterNotSet() |
|
| 50 | } |
||
| 51 |