FileDocCategorySizeDatePackage
SendFailedException.javaAPI DocJavaMail 1.4.34851Tue Nov 17 10:38:12 GMT 2009javax.mail

SendFailedException

public class SendFailedException extends MessagingException
This exception is thrown when the message cannot be sent.

The exception includes those addresses to which the message could not be sent as well as the valid addresses to which the message was sent and valid addresses to which the message was not sent.

see
javax.mail.Transport#send
see
javax.mail.Transport#sendMessage
see
javax.mail.event.TransportEvent
author
John Mani
author
Max Spivak

Fields Summary
protected transient Address[]
invalid
protected transient Address[]
validSent
protected transient Address[]
validUnsent
private static final long
serialVersionUID
Constructors Summary
public SendFailedException()
Constructs a SendFailedException with no detail message.


                
      
	super();
    
public SendFailedException(String s)
Constructs a SendFailedException with the specified detail message.

param
s the detail message

	super(s);
    
public SendFailedException(String s, Exception e)
Constructs a SendFailedException with the specified Exception and detail message. The specified exception is chained to this exception.

param
s the detail message
param
e the embedded exception
see
#getNextException
see
#setNextException

	super(s, e);
    
public SendFailedException(String msg, Exception ex, Address[] validSent, Address[] validUnsent, Address[] invalid)
Constructs a SendFailedException with the specified string and the specified address objects.

param
msg the detail message
param
ex the embedded exception
param
validSent valid addresses to which message was sent
param
validUnsent valid addresses to which message was not sent
param
invalid the invalid addresses
see
#getNextException
see
#setNextException

	super(msg, ex);
	this.validSent = validSent;
	this.validUnsent = validUnsent;
	this.invalid = invalid;
    
Methods Summary
public javax.mail.Address[]getInvalidAddresses()
Return the addresses to which this message could not be sent.

return
Addresses to which the message sending failed or null;

	return invalid;
    
public javax.mail.Address[]getValidSentAddresses()
Return the addresses to which this message was sent succesfully.

return
Addresses to which the message was sent successfully or null

	return validSent;
    
public javax.mail.Address[]getValidUnsentAddresses()
Return the addresses that are valid but to which this message was not sent.

return
Addresses that are valid but to which the message was not sent successfully or null

	return validUnsent;