summaryrefslogtreecommitdiff
path: root/ick2/exceptions.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-07-20 17:18:23 +0300
committerLars Wirzenius <liw@liw.fi>2019-08-03 21:06:50 +0300
commitb87027a3c7d3bc88e2674c9e22c8745c9dbf1043 (patch)
treea0f74e34dde2bb69a38223bec3d71cea7e1d311f /ick2/exceptions.py
parent066664763f16318076e34d702cce746b2fd4afca (diff)
downloadick2-b87027a3c7d3bc88e2674c9e22c8745c9dbf1043.tar.gz
Add: MuckStore
Diffstat (limited to 'ick2/exceptions.py')
-rw-r--r--ick2/exceptions.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/ick2/exceptions.py b/ick2/exceptions.py
index bd394af..8467e7a 100644
--- a/ick2/exceptions.py
+++ b/ick2/exceptions.py
@@ -40,6 +40,12 @@ class Conflict(IckException):
rid, expected, got))
+class StoreError(IckException):
+
+ def __init__(self, msg):
+ super().__init__('Error accessing persistent store: {}'.format(msg))
+
+
class BadUpdate(IckException):
def __init__(self, how):