diff options
author | andy <andy@whiskeymedia.com> | 2013-03-28 11:33:17 -0700 |
---|---|---|
committer | andy <andy@whiskeymedia.com> | 2013-03-28 11:33:17 -0700 |
commit | 8063b1021718f1eb1ab87530358e70fb171f5cba (patch) | |
tree | ef2e961a888d148d3d1d6f02600a92e8b2f1df88 /redis/exceptions.py | |
parent | ba7b768fdb34a86952980d0c118433b5af81f70b (diff) | |
parent | 4a783ba99da9501649bebd8fb1a51d8cc8075c17 (diff) | |
download | redis-py-8063b1021718f1eb1ab87530358e70fb171f5cba.tar.gz |
Merge branch 'master' of git://github.com/mattrobenolt/redis-py into mattrobenolt-master
Conflicts:
redis/exceptions.py
Diffstat (limited to 'redis/exceptions.py')
-rw-r--r-- | redis/exceptions.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/redis/exceptions.py b/redis/exceptions.py index 6bb5fa7..34e3816 100644 --- a/redis/exceptions.py +++ b/redis/exceptions.py @@ -8,16 +8,16 @@ class RedisError(Exception): class AuthenticationError(RedisError): pass - -class ConnectionError(RedisError): +class ServerError(RedisError): pass - -class ResponseError(RedisError): +class ConnectionError(ServerError): pass +class InvalidResponse(ServerError): + pass -class InvalidResponse(RedisError): +class ResponseError(RedisError): pass |