public class SMTPAddressSucceededException extends MessagingException
mail.smtp.reportsuccess property is true. It
indicates an address to which the message was sent. The command
will be an SMTP RCPT command and the return code will be the
return code from that command.| 限定符和类型 | 字段和说明 |
|---|---|
protected InternetAddress |
addr |
protected String |
cmd |
protected int |
rc |
| 构造器和说明 |
|---|
SMTPAddressSucceededException(InternetAddress addr,
String cmd,
int rc,
String err)
Constructs an SMTPAddressSucceededException with the specified
address, return code, and error string.
|
| 限定符和类型 | 方法和说明 |
|---|---|
InternetAddress |
getAddress()
Return the address that succeeded.
|
String |
getCommand()
Return the command that succeeded.
|
int |
getReturnCode()
Return the return code from the SMTP server that indicates the
reason for the success.
|
getCause, getNextException, setNextException, toStringprotected InternetAddress addr
protected String cmd
protected int rc
public SMTPAddressSucceededException(InternetAddress addr, String cmd, int rc, String err)
addr - the address that succeededcmd - the command that was sent to the SMTP serverrc - the SMTP return code indicating the successerr - the error string from the SMTP serverpublic InternetAddress getAddress()
public String getCommand()
public int getReturnCode()
Copyright © 2021 Oracle. All rights reserved.