MCPcopy
hub / github.com/redis/redis-py / ConnectionError

Class ConnectionError

redis/exceptions.py:23–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21
22
23class 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
29class TimeoutError(RedisError):

Calls

no outgoing calls