|
||||||||||
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
Exception thrown when a checked error occurs in commons-email.
Supports nesting, emulating JDK 1.4 behavior if necessary.
Adapted from FunctorException in Commons Collections.
Constructor Summary | |
EmailException()
Constructs a new EmailException with no
detail message. |
|
EmailException(java.lang.String msg)
Constructs a new EmailException with specified
detail message. |
|
EmailException(java.lang.String msg,
java.lang.Throwable rootCause)
Constructs a new EmailException with specified
detail message and nested Throwable root cause. |
|
EmailException(java.lang.Throwable rootCause)
Constructs a new EmailException with specified
nested Throwable root cause. |
Method Summary | |
java.lang.Throwable |
getCause()
Gets the cause of this throwable. |
void |
printStackTrace()
Prints the stack trace of this exception to the standard error stream. |
void |
printStackTrace(java.io.PrintStream out)
Prints the stack trace of this exception to the specified stream. |
void |
printStackTrace(java.io.PrintWriter out)
Prints the stack trace of this exception to the specified writer. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, 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(java.lang.String msg)
EmailException
with specified
detail message.
msg
- the error message.public EmailException(java.lang.Throwable rootCause)
EmailException
with specified
nested Throwable
root cause.
rootCause
- the exception or error that caused this exception
to be thrown.public EmailException(java.lang.String msg, java.lang.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 java.lang.Throwable getCause()
null
public void printStackTrace()
public void printStackTrace(java.io.PrintStream out)
out
- the PrintStream
to use for outputpublic void printStackTrace(java.io.PrintWriter out)
out
- the PrintWriter
to use for output
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |