moviepy_with_manga_test / bilibili_api /exceptions /CredentialNoAcTimeValueException.py
rogerxavier's picture
Upload 258 files
0aee47a verified
"""
bilibili_api.exceptions.CredentialNoAcTimeValue
Credential 类未提供 ac_time_value 时的异常。
"""
from .ApiException import ApiException
class CredentialNoAcTimeValueException(ApiException):
"""
Credential 类未提供 ac_time_value 时的异常。
"""
def __init__(self):
super().__init__()
self.msg = "Credential 类未提供 ac_time_value 或者为空。"