aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/vk/error.py
diff options
context:
space:
mode:
Diffstat (limited to 'vk/error.py')
-rw-r--r--vk/error.py3
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