summaryrefslogtreecommitdiff
path: root/ick2/exceptions.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-11-18 20:07:02 +0100
committerLars Wirzenius <liw@liw.fi>2017-11-18 20:24:34 +0100
commitb0c6bce3a8df1ea730a535cd2e3dd8be7ff4422e (patch)
treec0e0d703f3a0c74ee1b07a63c8718d56b160df0b /ick2/exceptions.py
parent18753714a35b6c8e5af4b6076973f490a1ba2097 (diff)
downloadick2-b0c6bce3a8df1ea730a535cd2e3dd8be7ff4422e.tar.gz
Refactor: move API specific exceptions into a separate module
Diffstat (limited to 'ick2/exceptions.py')
-rw-r--r--ick2/exceptions.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/ick2/exceptions.py b/ick2/exceptions.py
new file mode 100644
index 0000000..c99c3e5
--- /dev/null
+++ b/ick2/exceptions.py
@@ -0,0 +1,30 @@
+# Copyright (C) 2017 Lars Wirzenius
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero 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 Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
+class IckException(Exception):
+
+ pass
+
+
+class BadUpdate(IckException):
+
+ def __init__(self, how):
+ super().__init__('Work update is BAD: {}'.format(how))
+
+
+class MethodNotAllowed(IckException):
+
+ def __init__(self, wat):
+ super().__init__(wat)