java.io.Serializablepublic class SMTPSenderFailedException extends SendFailedException
The exception includes the sender's address, which the mail server rejected.
| Modifier and Type | Field | Description |
|---|---|---|
protected InternetAddress |
addr |
|
protected java.lang.String |
cmd |
|
protected int |
rc |
invalid, validSent, validUnsent| Constructor | Description |
|---|---|
SMTPSenderFailedException(InternetAddress addr,
java.lang.String cmd,
int rc,
java.lang.String err) |
Constructs an SMTPSenderFailedException with the specified
address, return code, and error string.
|
| Modifier and Type | Method | Description |
|---|---|---|
InternetAddress |
getAddress() |
Return the address that failed.
|
java.lang.String |
getCommand() |
Return the command that failed.
|
int |
getReturnCode() |
Return the return code from the SMTP server that indicates the
reason for the failure.
|
getCause, getNextException, setNextException, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetInvalidAddresses, getValidSentAddresses, getValidUnsentAddressesprotected InternetAddress addr
protected java.lang.String cmd
protected int rc
public SMTPSenderFailedException(InternetAddress addr, java.lang.String cmd, int rc, java.lang.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 InternetAddress getAddress()
public java.lang.String getCommand()
public int getReturnCode()
Copyright © 2018 Oracle. All rights reserved.