File size: 339 Bytes
0aee47a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
"""
bilibili_api.exceptions.DanmakuClosedException
视频弹幕被关闭错误。
"""
from .ApiException import ApiException
class DanmakuClosedException(ApiException):
"""
视频弹幕被关闭错误。
"""
def __init__(self):
super().__init__()
self.msg = "视频弹幕已关闭。"
|