Example usage for Java javax.mail MessagingException fields, constructors, methods, implement or subclass
The text is from its open source code.
MessagingException(String s) Constructs a MessagingException with the specified detail message. | |
MessagingException(String s, Exception e) Constructs a MessagingException with the specified Exception and detail message. | |
MessagingException() Constructs a MessagingException with no detail message. |
Throwable | getCause() Overrides the getCause method of Throwable to return the next exception in the chain of nested exceptions. |
Class> | getClass() Returns the runtime class of this Object . |
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. |
StackTraceElement[] | getStackTrace() Provides programmatic access to the stack trace information printed by #printStackTrace() . |
void | printStackTrace() Prints this throwable and its backtrace to the standard error stream. |
void | printStackTrace(PrintStream s) Prints this throwable and its backtrace to the specified print stream. |
String | toString() Override toString method to provide information on nested exceptions. |