SMTPAddressFailedExceptionpublic class SMTPAddressFailedException extends SendFailedException This exception is thrown when the message cannot be sent.
The exception includes the address to which the message could not be
sent. This will usually appear in a chained list of exceptions,
one per address, attached to a top level SendFailedException that
aggregates all the addresses. |
Fields Summary |
---|
protected InternetAddress | addr | protected String | cmd | protected int | rc | private static final long | serialVersionUID |
Constructors Summary |
---|
public SMTPAddressFailedException(InternetAddress addr, String cmd, int rc, String err)Constructs an SMTPAddressFailedException with the specified
address, return code, and error string.
super(err);
this.addr = addr;
this.cmd = cmd;
this.rc = rc;
|
Methods Summary |
---|
public javax.mail.internet.InternetAddress | getAddress()Return the address that failed.
return addr;
| 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;
|
|