mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2024-11-16 00:40:46 +00:00
17 lines
235 B
Python
17 lines
235 B
Python
|
class InstallError(Exception):
|
||
|
"""errors related to installation"""
|
||
|
|
||
|
pass
|
||
|
|
||
|
|
||
|
class CAPIError(Exception):
|
||
|
"""errors related to low-level C API calls"""
|
||
|
|
||
|
pass
|
||
|
|
||
|
|
||
|
class VMError(Exception):
|
||
|
"""general errors"""
|
||
|
|
||
|
pass
|