aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/vk/error.py
blob: 3a309c32473d3cf56192914cf41c5780f836fa89 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                             



                             
                                        
                                 
                          




                                 
                                   
        
# 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