diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-23 07:20:36 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-23 07:20:36 +0300 |
commit | 7b8cc8a9f455eda41b9c7d70f4561a84fcda941e (patch) | |
tree | b9e262e9a1dbb663c3b9f704a9fe4daf54be0ce9 /vk/error.py | |
parent | Travis: online_sessions.sh: refactoring (diff) | |
download | vk-scripts-7b8cc8a9f455eda41b9c7d70f4561a84fcda941e.tar.gz vk-scripts-7b8cc8a9f455eda41b9c7d70f4561a84fcda941e.zip |
pylint/pep8 fixes
Diffstat (limited to 'vk/error.py')
-rw-r--r-- | vk/error.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vk/error.py b/vk/error.py index 3a309c3..5f71e47 100644 --- a/vk/error.py +++ b/vk/error.py @@ -3,9 +3,11 @@ # For details, see https://github.com/egor-tensin/vk-scripts. # Distributed under the MIT License. + class APIError(RuntimeError): pass + class InvalidAPIResponseError(APIError): def __init__(self, response): super().__init__() @@ -14,5 +16,6 @@ class InvalidAPIResponseError(APIError): def __str__(self): return str(self.response) + class APIConnectionError(APIError): pass |