Improved docs

This commit is contained in:
2021-11-01 21:17:56 +01:00
parent 124b236182
commit 6eec92243e
65 changed files with 1886 additions and 25 deletions

View File

@@ -12,6 +12,8 @@ class ExceptionArgument(Enum):
# exceptions
class ArgumentNoneException(Exception):
r"""Exception when argument is None
"""
def __init__(self, arg: ExceptionArgument):
Exception.__init__(self, f'argument {arg} is None')