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