summaryrefslogtreecommitdiff
path: root/src/leap/mail/errors.py
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2016-04-18 11:53:18 -0400
committerKali Kaneko <kali@leap.se>2016-04-18 11:53:18 -0400
commit6db937b20828bc39ea13836e8a70c056affa593e (patch)
treefea16d104b10dfc993079b763e7bbc64da37ed81 /src/leap/mail/errors.py
parent9ba85bcc7724f1d9abc3ae200326e5f0a8597374 (diff)
parentd6f260f85f8464c6db6b9e158ecc85cfc02761ac (diff)
Merge tag '0.4.1'
Tag version 0.4.1
Diffstat (limited to 'src/leap/mail/errors.py')
-rw-r--r--src/leap/mail/errors.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/leap/mail/errors.py b/src/leap/mail/errors.py
new file mode 100644
index 0000000..2f18e87
--- /dev/null
+++ b/src/leap/mail/errors.py
@@ -0,0 +1,27 @@
+# -*- coding: utf-8 -*-
+# errors.py
+# Copyright (C) 2015 LEAP
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+"""
+Exceptions for leap.mail
+"""
+
+
+class AuthenticationError(Exception):
+ pass
+
+
+class ConfigurationError(Exception):
+ pass