obsws-python/obsws_python/error.py

7 lines
177 B
Python
Raw Normal View History

2022-07-26 21:47:50 +01:00
class OBSSDKError(Exception):
2023-06-19 17:44:10 +01:00
"""Exception raised when general errors occur"""
2022-07-26 21:47:50 +01:00
2023-06-19 17:44:10 +01:00
class OBSSDKTimeoutError(Exception):
"""Exception raised when a connection times out"""