message arg for HTTPWrongContentTypeException/HTTPParsingException

This commit is contained in:
jesopo 2019-06-28 23:00:48 +01:00
parent 890c893ddf
commit f9eb017466

View file

@ -18,12 +18,12 @@ class HTTPTimeoutException(HTTPException):
def __init__(self): def __init__(self):
Exception.__init__(self, "HTTP request timed out") Exception.__init__(self, "HTTP request timed out")
class HTTPParsingException(HTTPException): class HTTPParsingException(HTTPException):
def __init__(self): def __init__(self, message: str=None):
Exception.__init__(self, "HTTP parsing failed") Exception.__init__(self, message or "HTTP parsing failed")
pass
class HTTPWrongContentTypeException(HTTPException): class HTTPWrongContentTypeException(HTTPException):
def __init__(self): def __init__(self, message: str=None):
Exception.__init__(self, "HTTP request gave wrong content type") Exception.__init__(self,
message or "HTTP request gave wrong content type")
def throw_timeout(): def throw_timeout():
raise HTTPTimeoutException() raise HTTPTimeoutException()