reword Exception class docstrings.

This commit is contained in:
onyx-and-iris 2023-06-23 03:42:34 +01:00
parent 435a9e2085
commit 9cf048185d

View File

@ -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"""