SMTPSendFailedExceptionpublic class SMTPSendFailedException extends SendFailedException This exception is thrown when the message cannot be sent.
This exception will usually appear first in a chained list of exceptions,
followed by SMTPAddressFailedExceptions and/or
SMTPAddressSucceededExceptions, * one per address.
This exception corresponds to one of the SMTP commands used to
send a message, such as the MAIL, DATA, and "end of data" commands,
but not including the RCPT command. |
Fields Summary |
---|
protected InternetAddress | addr | protected String | cmd | protected int | rc | private static final long | serialVersionUID |
Constructors Summary |
---|
public SMTPSendFailedException(String cmd, int rc, String err, Exception ex, Address[] vs, Address[] vus, Address[] inv)Constructs an SMTPSendFailedException with the specified
address, return code, and error string.
super(err, ex, vs, vus, inv);
this.cmd = cmd;
this.rc = rc;
|
Methods Summary |
---|
public java.lang.String | getCommand()Return the command that failed.
return cmd;
| public int | getReturnCode()Return the return code from the SMTP server that indicates the
reason for the failure. See
RFC 821
for interpretation of the return code.
return rc;
|
|