From 9a1a4136ac69cce55d8d5f27a0ab1caadb0a6e90 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 28 Dec 2011 02:43:03 -0500 Subject: [PATCH] new SSLError --- requests/exceptions.py | 3 +++ 1 file changed, 3 insertions(+) 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.""" -- 2.34.1