mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2024-11-15 16:40:46 +00:00
11275d9473
initial commit
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
|