Example usage for Java javax.mail SendFailedException fields, constructors, methods, implement or subclass
The text is from its open source code.
SendFailedException(String s) Constructs a SendFailedException with the specified detail message. | |
SendFailedException(String msg, Exception ex, Address[] validSent, Address[] validUnsent, Address[] invalid) Constructs a SendFailedException with the specified string and the specified address objects. | |
SendFailedException(String s, Exception e) Constructs a SendFailedException with the specified Exception and detail message. |
Throwable | getCause() Overrides the getCause method of Throwable to return the next exception in the chain of nested exceptions. |
Address[] | getInvalidAddresses() Return the addresses to which this message could not be sent. |
String | getLocalizedMessage() Creates a localized description of this throwable. |
String | getMessage() Returns the detail message string of this throwable. |
Exception | getNextException() Get the next exception chained to this one. |
Address[] | getValidSentAddresses() Return the addresses to which this message was sent succesfully. |
Address[] | getValidUnsentAddresses() Return the addresses that are valid but to which this message was not sent. |
void | printStackTrace() Prints this throwable and its backtrace to the standard error stream. |
boolean | setNextException(Exception ex) Add an exception to the end of the chain. |
String | toString() Override toString method to provide information on nested exceptions. |