summaryrefslogtreecommitdiff
path: root/alot/errors.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-05-13 11:15:28 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2012-05-13 11:15:28 +0100
commit8d12c4751d310d7b79bbda6f34c68ef0029873db (patch)
tree9666f7b5e7c47d42c13d327b7b3f8479b3dcf2cf /alot/errors.py
parente47ee126ab7572387e7133e4bf34ba0d513878b6 (diff)
move alot.db.errors GPGProblem to alot.errors
to prevent circular imports and for consistency: This Exception is not related to the database abstraction layer.
Diffstat (limited to 'alot/errors.py')
-rw-r--r--alot/errors.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/alot/errors.py b/alot/errors.py
new file mode 100644
index 00000000..29283a45
--- /dev/null
+++ b/alot/errors.py
@@ -0,0 +1,3 @@
+class GPGProblem(Exception):
+ """GPG Error"""
+ pass