From b0c6bce3a8df1ea730a535cd2e3dd8be7ff4422e Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 18 Nov 2017 20:07:02 +0100 Subject: Refactor: move API specific exceptions into a separate module --- ick2/exceptions.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 ick2/exceptions.py (limited to 'ick2/exceptions.py') 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 . + + +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) -- cgit v1.2.1