|
Préférences
Moteurs de recherche
|
|||||||||||||||||||||||
JavaTM Platform, Enterprise Edition, v 5.0
javax.ejb
|
Constructor Summary | |
---|---|
EJBException()
Constructs an EJBException with no detail message. |
|
EJBException(Exception ex)
Constructs an EJBException that embeds the originally thrown exception. |
|
EJBException(String message)
Constructs an EJBException with the specified detailed message. |
|
EJBException(String message,
Exception ex)
Constructs an EJBException that embeds the originally thrown exception with the specified detail message. |
Method Summary | |
---|---|
Exception |
getCausedByException()
Obtain the exception that caused the EJBException being thrown. |
String |
getMessage()
Returns the detail message, including the message from the nested exception if there is one. |
void |
printStackTrace()
Prints the composite message to System.err . |
void |
printStackTrace(PrintStream ps)
Prints the composite message and the embedded stack trace to the specified stream ps . |
void |
printStackTrace(PrintWriter pw)
Prints the composite message and the embedded stack trace to the specified print writer pw . |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public EJBException()
public EJBException(String message)
public EJBException(Exception ex)
public EJBException(String message, Exception ex)
Method Detail |
---|
public Exception getCausedByException()
public String getMessage()
getMessage
in class Throwable
public void printStackTrace(PrintStream ps)
ps
.
printStackTrace
in class Throwable
ps
- the print streampublic void printStackTrace()
System.err
.
printStackTrace
in class Throwable
public void printStackTrace(PrintWriter pw)
pw
.
printStackTrace
in class Throwable
pw
- the print writer