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

Class TimeoutError

redis/exceptions.py:29–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27
28
29class 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
35class AuthenticationError(ConnectionError):

Calls

no outgoing calls