From 9cf048185d6d61239010ad3b65fba730e4c0f4b6 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Fri, 23 Jun 2023 03:42:34 +0100 Subject: [PATCH] reword Exception class docstrings. --- voicemeeterlib/error.py | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/voicemeeterlib/error.py b/voicemeeterlib/error.py index 4230d24..11aeb09 100644 --- a/voicemeeterlib/error.py +++ b/voicemeeterlib/error.py @@ -1,16 +1,10 @@ class InstallError(Exception): - """errors related to installation""" - - pass + """Exception raised when installation errors occur""" class CAPIError(Exception): - """errors related to low-level C API calls""" - - pass + """Exception raised when the C-API returns error values""" class VMError(Exception): - """general errors""" - - pass + """Exception raised when general errors occur"""