com.sun.mail.smtp
Class SMTPAddressSucceededException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.mail.MessagingException
com.sun.mail.smtp.SMTPAddressSucceededException
- All Implemented Interfaces:
- Serializable
public class SMTPAddressSucceededException
- extends MessagingException
This exception is chained off a SendFailedException when the
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.
- Since:
- JavaMail 1.3.2
- See Also:
- Serialized Form
addr
protected InternetAddress addr
cmd
protected String cmd
rc
protected int rc
SMTPAddressSucceededException
public SMTPAddressSucceededException(InternetAddress addr,
String cmd,
int rc,
String err)
- Constructs an SMTPAddressSucceededException with the specified
address, return code, and error string.
- Parameters:
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 server
getAddress
public InternetAddress getAddress()
- Return the address that succeeded.
getCommand
public String getCommand()
- Return the command that succeeded.
getReturnCode
public int getReturnCode()
- Return the return code from the SMTP server that indicates the
reason for the success. See
RFC 821
for interpretation of the return code.
Copyright © 2011 Oracle. All Rights Reserved.