mirror of https://github.com/ledisdb/ledisdb.git
33 lines
406 B
Python
33 lines
406 B
Python
"Core exceptions raised by the LedisDB client"
|
|
|
|
|
|
class LedisError(Exception):
|
|
pass
|
|
|
|
class ServerError(LedisError):
|
|
pass
|
|
|
|
|
|
class ConnectionError(ServerError):
|
|
pass
|
|
|
|
|
|
class BusyLoadingError(ConnectionError):
|
|
pass
|
|
|
|
|
|
class InvalidResponse(ServerError):
|
|
pass
|
|
|
|
|
|
class ResponseError(LedisError):
|
|
pass
|
|
|
|
|
|
class DataError(LedisError):
|
|
pass
|
|
|
|
|
|
class ExecAbortError(ResponseError):
|
|
pass
|