~cbehrens/nova/lp844160-build-works-with-zones

« back to all changes in this revision

Viewing changes to vendor/redis-py/redis/exceptions.py

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"Core exceptions raised by the Redis client"
 
2
 
 
3
class RedisError(Exception):
 
4
    pass
 
5
    
 
6
class AuthenticationError(RedisError):
 
7
    pass
 
8
    
 
9
class ConnectionError(RedisError):
 
10
    pass
 
11
    
 
12
class ResponseError(RedisError):
 
13
    pass
 
14
    
 
15
class InvalidResponse(RedisError):
 
16
    pass
 
17
    
 
18
class InvalidData(RedisError):
 
19
    pass
 
20
    
 
 
b'\\ No newline at end of file'