Base class for all exceptions raised by this module.
| 70 | |
| 71 | # Exception classes used by this module. |
| 72 | class SMTPException(OSError): |
| 73 | """Base class for all exceptions raised by this module.""" |
| 74 | |
| 75 | class SMTPNotSupportedError(SMTPException): |
| 76 | """The command or option is not supported by the SMTP server. |