Introduce local exception for SSL errors

It removes the import of SSL in console applications (SSL -> socket ->
base64 -> ...)
This commit is contained in:
Florent 2014-07-09 11:45:39 +02:00
commit e12485dc84
3 changed files with 8 additions and 5 deletions

View file

@ -46,6 +46,10 @@ class BrowserHTTPError(BrowserUnavailable):
pass
class BrowserSSLError(BrowserUnavailable):
pass
class ParseError(Exception):
pass