initial commit

initial commit
This commit is contained in:
onyx-and-iris
2022-06-16 14:07:12 +01:00
parent 6efd13fe85
commit 11275d9473
29 changed files with 3177 additions and 0 deletions

16
voicemeeterlib/error.py Normal file
View File

@@ -0,0 +1,16 @@
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