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

bilibili_api.exceptions.LoginError



登录错误。

"""

from .ApiException import ApiException


class LoginError(ApiException):
    """

    参数错误。

    """

    def __init__(self, msg: str):
        """

        Args:

            msg (str):   错误消息。

        """
        super().__init__(msg)
        self.msg = msg