From f9eb017466ec09f9ceb378cdb04bb70422bede7a Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 28 Jun 2019 23:00:48 +0100 Subject: [PATCH] message arg for HTTPWrongContentTypeException/HTTPParsingException --- src/utils/http.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/utils/http.py b/src/utils/http.py index ac46ce6b..88555568 100644 --- a/src/utils/http.py +++ b/src/utils/http.py @@ -18,12 +18,12 @@ class HTTPTimeoutException(HTTPException): def __init__(self): Exception.__init__(self, "HTTP request timed out") class HTTPParsingException(HTTPException): - def __init__(self): - Exception.__init__(self, "HTTP parsing failed") - pass + def __init__(self, message: str=None): + Exception.__init__(self, message or "HTTP parsing failed") class HTTPWrongContentTypeException(HTTPException): - def __init__(self): - Exception.__init__(self, "HTTP request gave wrong content type") + def __init__(self, message: str=None): + Exception.__init__(self, + message or "HTTP request gave wrong content type") def throw_timeout(): raise HTTPTimeoutException()