Base class for all exceptions raised by this module.
| 68 | |
| 69 | # Exception classes used by this module. |
| 70 | class SMTPException(OSError): |
| 71 | """Base class for all exceptions raised by this module.""" |
| 72 | |
| 73 | class SMTPNotSupportedError(SMTPException): |
| 74 | """The command or option is not supported by the SMTP server. |
no outgoing calls
no test coverage detected
searching dependent graphs…