summaryrefslogtreecommitdiff
path: root/ick2/exceptions.py
diff options
context:
space:
mode:
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):