|
|||||||||||
| 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.openejb.OpenEJBException
The OpenEJBException is the standard exception thrown by all methods in all type in the Container Provider Interface (CPI). The OpenEJBException has 3 subtypes each serving a different purpose. The CPI will always thrown one of these subtype and never the OpenEJBException itself.
ApplicationException,
InvalidateReferenceException,
OpenEJBException,
SystemException,
Serialized Form| Constructor Summary | |
OpenEJBException()
Default constructor, which simply delegates exception handling up the inheritance chain to Exception. |
|
OpenEJBException(String message)
This constructor allows a message to be supplied indicating the source of the problem that occurred. |
|
OpenEJBException(String message,
Throwable rootCause)
This constructor allows both a message identifying the problem that occurred as well as a "root cause" exception to be supplied, which may later be used by the wrapping application. |
|
OpenEJBException(Throwable rootCause)
This constructor allows a "root cause" exception to be supplied, which may later be used by the wrapping application. |
|
| Method Summary | |
String |
getMessage()
This returns the message for the Exception. |
Throwable |
getRootCause()
This will return the root cause Throwable, or
null if one does not exist. |
void |
printStackTrace()
This prints the stack trace of the Exception. |
void |
printStackTrace(PrintStream stream)
This prints the stack trace of the Exception. |
void |
printStackTrace(PrintWriter writer)
This prints the stack trace of the Exception. |
| 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 OpenEJBException()
Default constructor, which simply delegates exception
handling up the inheritance chain to Exception.
public OpenEJBException(String message)
This constructor allows a message to be supplied indicating the source of the problem that occurred.
message - String identifying the cause of the problem.public OpenEJBException(Throwable rootCause)
This constructor allows a "root cause" exception to be supplied, which may later be used by the wrapping application.
rootCause - Throwable that triggered the problem.
public OpenEJBException(String message,
Throwable rootCause)
message - String identifying the cause of the problem.rootCause - Throwable that triggered this problem.| Method Detail |
public String getMessage()
This returns the message for the Exception. If there is
a root cause, the message associated with the root cause
is appended.
String - message for this Exception.public void printStackTrace()
This prints the stack trace of the Exception. If there is
a root cause, the stack trace of the root Exception
is printed right after.
public void printStackTrace(PrintStream stream)
This prints the stack trace of the Exception. If there is
a root cause, the stack trace of the root Exception
is printed right after.
stream - PrintStream to print stack trace to.public void printStackTrace(PrintWriter writer)
This prints the stack trace of the Exception. If there is
a root cause, the stack trace of the root Exception
is printed right after.
writer - PrintWriter to print stack trace to.public Throwable getRootCause()
This will return the root cause Throwable, or
null if one does not exist.
Throwable - the wrapped Throwable.
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||