voicemeeter-api-python/voicemeeterlib/error.py
onyx-and-iris 11275d9473 initial commit
initial commit
2022-06-16 14:07:12 +01:00

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