File size: 571 Bytes
0aee47a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
"""
bilibili_api.exceptions.NetworkException
网络错误。
"""
from .ApiException import ApiException
class NetworkException(ApiException):
"""
网络错误。
"""
def __init__(self, status: int, msg: str):
"""
Args:
status (int): 状态码。
msg (str): 状态消息。
"""
super().__init__(msg)
self.status = status
self.msg = f"网络错误,状态码:{status} - {msg}。"
def __str__(self):
return self.msg
|