diff options
author | andymccurdy <sedrik@gmail.com> | 2010-02-15 13:08:56 -0800 |
---|---|---|
committer | andymccurdy <sedrik@gmail.com> | 2010-02-15 13:08:56 -0800 |
commit | 61c106e5fe5b9ab0380b29f60e245d4a318a2a06 (patch) | |
tree | aff75b8e5c009412e77b344f5b008de5a43bdb9f /redis/exceptions.py | |
parent | 33521a7d6cca8447fd885a61ffd812f634cf222c (diff) | |
download | redis-py-61c106e5fe5b9ab0380b29f60e245d4a318a2a06.tar.gz |
new client passes all command tests, still need tests for connection pool and pipelining.
Diffstat (limited to 'redis/exceptions.py')
-rw-r--r-- | redis/exceptions.py | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/redis/exceptions.py b/redis/exceptions.py index acbe7b7..d3449b6 100644 --- a/redis/exceptions.py +++ b/redis/exceptions.py @@ -1,5 +1,20 @@ -class RedisError(Exception): pass -class ConnectionError(RedisError): pass -class ResponseError(RedisError): pass -class InvalidResponse(RedisError): pass -class InvalidData(RedisError): pass +"Core exceptions raised by the Redis client" + +class RedisError(Exception): + pass + +class AuthenticationError(RedisError): + pass + +class ConnectionError(RedisError): + pass + +class ResponseError(RedisError): + pass + +class InvalidResponse(RedisError): + pass + +class InvalidData(RedisError): + pass +
\ No newline at end of file |