Searched refs:SMTPException (Results 1 – 9 of 9) sorted by relevance
66 class SMTPException(Exception): class69 class SMTPServerDisconnected(SMTPException):77 class SMTPResponseException(SMTPException):104 class SMTPRecipientsRefused(SMTPException):586 raise SMTPException("SMTP AUTH extension not supported by server.")619 raise SMTPException("No suitable authentication method found.")645 raise SMTPException("STARTTLS extension not supported by server.")
373 except (socket.error, smtplib.SMTPException), e:
71 class SMTPException(OSError): class74 class SMTPNotSupportedError(SMTPException):81 class SMTPServerDisconnected(SMTPException):89 class SMTPResponseException(SMTPException):116 class SMTPRecipientsRefused(SMTPException):714 raise SMTPException("No suitable authentication method found.")
768 except (OSError, smtplib.SMTPException) as e:
36 except smtplib.SMTPException as e:
82 .. exception:: SMTPException261 :exc:`SMTPException`282 :exc:`SMTPException`
139 .. exception:: SMTPException145 SMTPException became subclass of :exc:`OSError`334 :exc:`SMTPException`437 :exc:`SMTPException`.
1382 :exc:`~smtplib.SMTPException` is now a subclass of :exc:`OSError`, which allows
5087 - Issue #2118: SMTPException is now a subclass of OSError.