summaryrefslogtreecommitdiff
path: root/redis/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/exceptions.py')
-rw-r--r--redis/exceptions.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/redis/exceptions.py b/redis/exceptions.py
index 9a1852a..6f47024 100644
--- a/redis/exceptions.py
+++ b/redis/exceptions.py
@@ -67,3 +67,8 @@ class LockError(RedisError, ValueError):
class LockNotOwnedError(LockError):
"Error trying to extend or release a lock that is (no longer) owned"
pass
+
+
+class ChildDeadlockedError(Exception):
+ "Error indicating that a child process is deadlocked after a fork()"
+ pass