From 7b8cc8a9f455eda41b9c7d70f4561a84fcda941e Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 23 Dec 2019 07:20:36 +0300 Subject: pylint/pep8 fixes --- vk/error.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'vk/error.py') 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 -- cgit v1.2.3