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 SMTPAddressFailedException

javax.mail.MessagingException extended by javax.mail.SendFailedException extended by com.sun.mail.smtp.SMTPAddressFailedException

public exception SMTPAddressFailedException
extends SendFailedException

This exception is thrown when the message cannot be sent.

The exception includes the address to which the message could not be sent. This will usually appear in a chained list of exceptions, one per address, attached to a top level SendFailedException that aggregates all the addresses.


Field Summary
protected InternetAddress addr
          
protected String cmd
          
protected int rc
          
 
Fields inherited from class javax.mail.SendFailedException
invalid, validSent, validUnsent
 
Constructor Summary

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

          Return the address that failed.
 String

          Return the command that failed.
 int

          Return the return code from the SMTP server that indicates the reason for the failure.
 
Methods inherited from class javax.mail.SendFailedException
getInvalidAddresses, getValidSentAddresses, getValidUnsentAddresses
 
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

SMTPAddressFailedException

public SMTPAddressFailedException(InternetAddress addr,
                                  String cmd,
                                  int rc,
                                  String err)
Constructs an SMTPAddressFailedException with the specified address, return code, and error string.

Parameters:
addr - the address that failed
cmd - the command that was sent to the SMTP server
rc - the SMTP return code indicating the failure
err - the error string from the SMTP server
Method Detail

getAddress

public InternetAddress getAddress()
Return the address that failed.


getCommand

public String getCommand()
Return the command that failed.


getReturnCode

public int getReturnCode()
Return the return code from the SMTP server that indicates the reason for the failure. 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.