From 84fdd94559d8076760e4ce9da92bc264a45c0010 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Fri, 18 Aug 2023 20:09:59 +0100 Subject: [PATCH] rewird VMError docstring upd README. --- README.md | 2 +- voicemeeterlib/error.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e714534..4b99871 100644 --- a/README.md +++ b/README.md @@ -842,7 +842,7 @@ True iff a level has been updated. ### Errors -- `errors.VMError`: Exception raised when general errors occur. +- `errors.VMError`: Base custom exception class. - `errors.InstallError`: Exception raised when installation errors occur. - `errors.CAPIError`: Exception raised when the C-API returns error values. - The following attributes are available: diff --git a/voicemeeterlib/error.py b/voicemeeterlib/error.py index 53dd424..7c3ff22 100644 --- a/voicemeeterlib/error.py +++ b/voicemeeterlib/error.py @@ -1,5 +1,5 @@ class VMError(Exception): - """Base VM Exception class. Raised when general errors occur.""" + """Base voicemeeterlib exception class.""" class InstallError(VMError):