mirror of
https://github.com/xfgryujk/blivechat.git
synced 2025-01-13 22:00:15 +08:00
14 lines
184 B
Python
14 lines
184 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
__all__ = (
|
||
|
'SdkError',
|
||
|
'InitError',
|
||
|
)
|
||
|
|
||
|
|
||
|
class SdkError(Exception):
|
||
|
"""SDK错误的基类"""
|
||
|
|
||
|
|
||
|
class InitError(SdkError):
|
||
|
"""初始化失败"""
|