rogerxavier's picture
Upload 258 files
0aee47a verified
raw
history blame
No virus
220 Bytes
"""
bilibili_api.exceptions.LiveException
"""
from .ApiException import ApiException
class LiveException(ApiException):
def __init__(self, msg: str):
super().__init__()
self.msg = msg