| 27 | |
| 28 | |
| 29 | class TimeoutError(RedisError): |
| 30 | def __init__(self, *args, status_code: str = None): |
| 31 | super().__init__(*args, status_code=status_code) |
| 32 | self.error_type = ExceptionType.NETWORK |
| 33 | |
| 34 | |
| 35 | class AuthenticationError(ConnectionError): |
no outgoing calls