public class EmailException
extends java.lang.Exception
Description: Exception thrown when a checked error occurs in sh-email.
Title:首亨软件 - TSS/CRM等
| 构造器和说明 |
|---|
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. |
| 限定符和类型 | 方法和说明 |
|---|---|
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.
|
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.public java.lang.Throwable getCause()
getCause 在类中 java.lang.Throwablenullpublic void printStackTrace()
printStackTrace 在类中 java.lang.Throwablepublic void printStackTrace(java.io.PrintStream out)
printStackTrace 在类中 java.lang.Throwableout - the PrintStream to use for outputpublic void printStackTrace(java.io.PrintWriter out)
printStackTrace 在类中 java.lang.Throwableout - the PrintWriter to use for output