From 13b636663d985cf18b71c8b91a791bc2de9e765d Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Tue, 9 Dec 2008 18:42:53 +0000 Subject: [PATCH] ganeti.http: Remove _HttpClientError This is a leftover from old code. Reviewed-by: iustinp --- lib/http/__init__.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/lib/http/__init__.py b/lib/http/__init__.py index e8a355da6..2a9f316dd 100644 --- a/lib/http/__init__.py +++ b/lib/http/__init__.py @@ -72,6 +72,7 @@ _SSL_UNEXPECTED_EOF = "Unexpected EOF" # send/receive quantum SOCK_BUF_SIZE = 32768 + class HttpError(Exception): """Internal exception for HTTP errors. @@ -80,14 +81,6 @@ class HttpError(Exception): """ -class _HttpClientError(Exception): - """Internal exception for HTTP client errors. - - This should only be used for internal error reporting. - - """ - - class HttpSocketTimeout(Exception): """Internal exception for socket timeouts. -- GitLab