aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/vk/error.py
blob: 5f71e47b16e12cf78c687e181855c392492ea287 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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