| 21 | |
| 22 | |
| 23 | class ConnectionError(RedisError): |
| 24 | def __init__(self, *args, status_code: str = None): |
| 25 | super().__init__(*args, status_code=status_code) |
| 26 | self.error_type = ExceptionType.NETWORK |
| 27 | |
| 28 | |
| 29 | class TimeoutError(RedisError): |
no outgoing calls