voicemeeter-api-python/voicemeeterlib/error.py

25 lines
685 B
Python
Raw Normal View History

class VMError(Exception):
2023-08-18 20:09:59 +01:00
"""Base voicemeeterlib exception class."""
2022-06-16 14:07:12 +01:00
class InstallError(VMError):
"""Exception raised when installation errors occur"""
class CAPIError(VMError):
"""Exception raised when the C-API returns an error code"""
def __init__(self, fn_name, code):
self.fn_name = fn_name
self.code = code
if self.code == -9:
2025-01-15 12:40:31 +00:00
message = ' '.join(
(
2025-01-15 12:40:31 +00:00
f'no bind for {self.fn_name}.',
'are you using an old version of the API?',
)
)
else:
2025-01-15 12:40:31 +00:00
message = f'{self.fn_name} returned {self.code}'
super().__init__(message)