diff options
author | andy <andy@whiskeymedia.com> | 2010-01-13 15:02:33 -0800 |
---|---|---|
committer | andy <andy@whiskeymedia.com> | 2010-01-13 15:02:33 -0800 |
commit | 9e7b4e6a0e590e056463919c572840c2c39b111d (patch) | |
tree | cbe704f9c0f87e0a910765906f7682df77e48cd6 /redis/exceptions.py | |
parent | 54928a955ed656479fa5c9f71b330d300c756108 (diff) | |
download | redis-py-9e7b4e6a0e590e056463919c572840c2c39b111d.tar.gz |
helps to actually include the new file
Diffstat (limited to 'redis/exceptions.py')
-rw-r--r-- | redis/exceptions.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/redis/exceptions.py b/redis/exceptions.py new file mode 100644 index 0000000..acbe7b7 --- /dev/null +++ b/redis/exceptions.py @@ -0,0 +1,5 @@ +class RedisError(Exception): pass +class ConnectionError(RedisError): pass +class ResponseError(RedisError): pass +class InvalidResponse(RedisError): pass +class InvalidData(RedisError): pass |