voicemeeter-api-python/voicemeeterlib/error.py

11 lines
263 B
Python
Raw Normal View History

2022-06-16 14:07:12 +01:00
class InstallError(Exception):
2023-06-23 03:42:34 +01:00
"""Exception raised when installation errors occur"""
2022-06-16 14:07:12 +01:00
class CAPIError(Exception):
2023-06-23 03:42:34 +01:00
"""Exception raised when the C-API returns error values"""
2022-06-16 14:07:12 +01:00
class VMError(Exception):
2023-06-23 03:42:34 +01:00
"""Exception raised when general errors occur"""