Fix some issues, improve documentation

This commit is contained in:
2021-03-27 19:05:09 +01:00
parent 0f7d67c98d
commit 9036755a62
8 changed files with 89 additions and 48 deletions

View File

@@ -34,8 +34,10 @@ class HTTPServerException(Exception):
status_code: str
message: str
body: str
arg: str
def __init__(self, body=""):
def __init__(self, arg, body=""):
self.arg = arg
self.body = body