mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2026-01-02 15:07:47 +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
|