exceptions.py
Go to the documentation of this file.
00001 "Core exceptions raised by the Redis client"
00002 
00003 
00004 class RedisError(Exception):
00005     pass
00006 
00007 
00008 class AuthenticationError(RedisError):
00009     pass
00010 
00011 
00012 class ConnectionError(RedisError):
00013     pass
00014 
00015 
00016 class ResponseError(RedisError):
00017     pass
00018 
00019 
00020 class InvalidResponse(RedisError):
00021     pass
00022 
00023 
00024 class DataError(RedisError):
00025     pass
00026 
00027 
00028 class PubSubError(RedisError):
00029     pass
00030 
00031 
00032 class WatchError(RedisError):
00033     pass
00034 
00035 
00036 class NoScriptError(ResponseError):
00037     pass


rocon_python_redis
Author(s): Andy McCurdy
autogenerated on Fri May 2 2014 10:35:49