public class SMTPSenderFailedException
extends javax.mail.SendFailedException
The exception includes the sender's address, which the mail server rejected.
| Modifier and Type | Field and Description |
|---|---|
protected javax.mail.internet.InternetAddress |
addr |
protected String |
cmd |
protected int |
rc |
| Constructor and Description |
|---|
SMTPSenderFailedException(javax.mail.internet.InternetAddress addr,
String cmd,
int rc,
String err)
Constructs an SMTPSenderFailedException with the specified
address, return code, and error string.
|
| Modifier and Type | Method and Description |
|---|---|
javax.mail.internet.InternetAddress |
getAddress()
Return the address that failed.
|
String |
getCommand()
Return the command that failed.
|
int |
getReturnCode()
Return the return code from the SMTP server that indicates the
reason for the failure.
|
getInvalidAddresses, getValidSentAddresses, getValidUnsentAddressesgetCause, getNextException, setNextException, toStringaddSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTraceprotected javax.mail.internet.InternetAddress addr
protected String cmd
protected int rc
public SMTPSenderFailedException(javax.mail.internet.InternetAddress addr,
String cmd,
int rc,
String err)
addr - the address that failedcmd - the command that was sent to the SMTP serverrc - the SMTP return code indicating the failureerr - the error string from the SMTP serverpublic javax.mail.internet.InternetAddress getAddress()
public String getCommand()
public int getReturnCode()
Copyright © 2015 Oracle. All rights reserved.