javax.mail
public class SendFailedException extends MessagingException
It 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.
Version: 1.4
Field Summary | |
---|---|
protected Address[] | invalid |
protected Address[] | validSent |
protected Address[] | validUnsent |
Constructor Summary | |
---|---|
SendFailedException() | |
SendFailedException(String message) | |
SendFailedException(String message, Exception exception) | |
SendFailedException(String message, Exception exception, Address[] validSent, Address[] validUnsent, Address[] invalid)
Creates a send failed exception with the specified string and
addresses. |
Method Summary | |
---|---|
Address[] | getInvalidAddresses()
Returns the addresses to which this message could not be sent. |
Address[] | getValidSentAddresses()
Returns the addresses to which this message was sent succesfully. |
Address[] | getValidUnsentAddresses()
Returns the addresses that are valid but to which this message was
not sent. |
Parameters: message the detail message exception the embedded exception validSent valid addresses to which message was sent validUnsent valid addresses to which message was not sent invalid the invalid addresses