The command or option is not supported by the SMTP server. This exception is raised when an attempt is made to run a command or a command with an option which is not supported by the server.
| 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. |
| 77 | |
| 78 | This exception is raised when an attempt is made to run a command or a |
| 79 | command with an option which is not supported by the server. |
| 80 | """ |
| 81 | |
| 82 | class SMTPServerDisconnected(SMTPException): |
| 83 | """Not connected to any SMTP server. |
no outgoing calls
no test coverage detected