File size: 346 Bytes
0aee47a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""

bilibili_api.exceptions.ApiException



API 异常基类。

"""


class ApiException(Exception):
    """

    API 基类异常。

    """

    def __init__(self, msg: str = "出现了错误,但是未说明具体原因。"):
        super().__init__(msg)
        self.msg = msg

    def __str__(self):
        return self.msg