Raise when getting an unsupported store.
| 15 | super().__init__("The cache remove error") |
| 16 | |
| 17 | class NotFoundError(CacheError): |
| 18 | """Raise when getting an unsupported store.""" |
| 19 | def __init__(self, store_type, current_type_name): |
| 20 | super().__init__(f"Unsupported ${store_type}: {current_type_name}") |
| 21 | |
| 22 | |
| 23 | class ParamError(CacheError): |