Source code for redicts.errors

#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""
Errors used throughout the library.
"""


[docs]class LockTimeout(Exception): """Raised when lock creation fails within the timeout""" pass
[docs]class InternalError(Exception): """Raised when the implementation got confused. This should only happen when somebody else tampers with the locking keys in redis. """ pass