rewird VMError docstring

upd README.
This commit is contained in:
onyx-and-iris 2023-08-18 20:09:59 +01:00
parent eb66f9e2bc
commit 84fdd94559
2 changed files with 2 additions and 2 deletions

View File

@ -842,7 +842,7 @@ True iff a level has been updated.
### Errors ### Errors
- `errors.VMError`: Exception raised when general errors occur. - `errors.VMError`: Base custom exception class.
- `errors.InstallError`: Exception raised when installation errors occur. - `errors.InstallError`: Exception raised when installation errors occur.
- `errors.CAPIError`: Exception raised when the C-API returns error values. - `errors.CAPIError`: Exception raised when the C-API returns error values.
- The following attributes are available: - The following attributes are available:

View File

@ -1,5 +1,5 @@
class VMError(Exception): class VMError(Exception):
"""Base VM Exception class. Raised when general errors occur.""" """Base voicemeeterlib exception class."""
class InstallError(VMError): class InstallError(VMError):