diff --git a/tempest/exceptions.py b/tempest/exceptions.py index 857e1e8..2e2c5ec 100644 --- a/tempest/exceptions.py +++ b/tempest/exceptions.py @@ -197,6 +197,10 @@ class InvalidHTTPResponseBody(RestClientException): message = "HTTP response body is invalid json or xml" +class InvalidHTTPResponseHeader(RestClientException): + message = "HTTP response header is invalid" + + class InvalidContentType(RestClientException): message = "Invalid content type provided"