From: Kenneth Reitz Date: Wed, 28 Dec 2011 07:43:03 +0000 (-0500) Subject: new SSLError X-Git-Tag: v0.8.8~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9a1a4136ac69cce55d8d5f27a0ab1caadb0a6e90;p=services%2Fpython-requests.git new SSLError --- diff --git a/requests/exceptions.py b/requests/exceptions.py index d0f8f39..c7b98e6 100644 --- a/requests/exceptions.py +++ b/requests/exceptions.py @@ -18,6 +18,9 @@ class HTTPError(RequestException): class ConnectionError(RequestException): """A Connection error occurred.""" +class SSLError(ConnectionError): + """An SSL error occurred.""" + class Timeout(RequestException): """The request timed out."""