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