blob: 3a309c32473d3cf56192914cf41c5780f836fa89 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "VK scripts" project.
# 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__()
self.response = response
def __str__(self):
return str(self.response)
class APIConnectionError(APIError):
pass
|