voicemeeter-api-python/voicemeeterlib/error.py

17 lines
235 B
Python
Raw Permalink Normal View History

2022-06-16 14:07:12 +01:00
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