This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


com.sun.mail.smtp
exception SMTPAddressSucceededException

javax.mail.MessagingException extended by com.sun.mail.smtp.SMTPAddressSucceededException

public exception 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.


Field Summary
protected InternetAddress addr
          
protected String cmd
          
protected int rc
          
 
Constructor Summary

          Constructs an SMTPAddressSucceededException with the specified address, return code, and error string.
 
Method Summary
 InternetAddress

          Return the address that succeeded.
 String

          Return the command that succeeded.
 int

          Return the return code from the SMTP server that indicates the reason for the success.
 
Methods inherited from class javax.mail.MessagingException
getCause, getNextException, setNextException, toString
 

Field Detail

addr

protected InternetAddress addr

cmd

protected String cmd

rc

protected int rc
Constructor Detail

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 succeeded
cmd - the command that was sent to the SMTP server
rc - the SMTP return code indicating the success
err - the error string from the SMTP server
Method Detail

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.



This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention. The official Sun™ documentation can be found here at http://java.sun.com/products/javamail/javadocs/index.html.