FileDocCategorySizeDatePackage
SMTPAddressFailedException.javaAPI DocGlassfish v2 API3811Mon May 14 15:28:46 BST 2007com.sun.mail.smtp

SMTPAddressFailedException

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

since
JavaMail 1.3.2

Fields Summary
protected InternetAddress
addr
protected String
cmd
protected int
rc
private static final long
serialVersionUID
Constructors Summary
public SMTPAddressFailedException(InternetAddress addr, String cmd, int rc, String err)
Constructs an SMTPAddressFailedException with the specified address, return code, and error string.

param
addr the address that failed
param
cmd the command that was sent to the SMTP server
param
rc the SMTP return code indicating the failure
param
err the error string from the SMTP server


                   	     	          	        	           
          
				  
	super(err);
	this.addr = addr;
	this.cmd = cmd;
	this.rc = rc;
    
Methods Summary
public javax.mail.internet.InternetAddressgetAddress()
Return the address that failed.

	return addr;
    
public java.lang.StringgetCommand()
Return the command that failed.

	return cmd;
    
public intgetReturnCode()
Return the return code from the SMTP server that indicates the reason for the failure. See RFC 821 for interpretation of the return code.

	return rc;