|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
org.apache.commons.mail.EmailException
public class EmailException
Exception thrown when a checked error occurs in commons-email.
Adapted from FunctorException in Commons Collections.
Emulation support for nested exceptions has been removed in Email 1.3,
supported by JDK ≥ 1.4.
| Constructor Summary | |
|---|---|
EmailException()
Constructs a new EmailException with no
detail message. |
|
EmailException(String msg)
Constructs a new EmailException with specified
detail message. |
|
EmailException(String msg,
Throwable rootCause)
Constructs a new EmailException with specified
detail message and nested Throwable root cause. |
|
EmailException(Throwable rootCause)
Constructs a new EmailException with specified
nested Throwable root cause. |
|
| Method Summary | |
|---|---|
void |
printStackTrace()
Prints the stack trace of this exception to the standard error stream. |
void |
printStackTrace(PrintStream out)
Prints the stack trace of this exception to the specified stream. |
void |
printStackTrace(PrintWriter out)
Prints the stack trace of this exception to the specified writer. |
| Methods inherited from class java.lang.Throwable |
|---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public EmailException()
EmailException with no
detail message.
public EmailException(String msg)
EmailException with specified
detail message.
msg - the error message.public EmailException(Throwable rootCause)
EmailException with specified
nested Throwable root cause.
rootCause - the exception or error that caused this exception
to be thrown.
public EmailException(String msg,
Throwable rootCause)
EmailException with specified
detail message and nested Throwable root cause.
msg - the error message.rootCause - the exception or error that caused this exception
to be thrown.| Method Detail |
|---|
public void printStackTrace()
printStackTrace in class Throwablepublic void printStackTrace(PrintStream out)
printStackTrace in class Throwableout - the PrintStream to use for outputpublic void printStackTrace(PrintWriter out)
printStackTrace in class Throwableout - the PrintWriter to use for output
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||