File size: 413 Bytes
0aee47a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
"""
bilibili_api.exceptions.CredentialNoSessdataException
Credential 类未提供 sessdata 时的异常。
"""
from .ApiException import ApiException
class CredentialNoSessdataException(ApiException):
"""
Credential 类未提供 sessdata 时的异常。
"""
def __init__(self):
super().__init__()
self.msg = "Credential 类未提供 sessdata 或者为空。"
|