| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.io.IOException java.rmi.RemoteException javax.transaction.TransactionRolledbackException org.apache.openejb.core.transaction.TransactionRolledbackException
Method Summary | |
public Throwable | getCause() Answers the cause of this Throwable, or null if there is no cause. | public String | getLocalizedMessage() Answers the extra information message which was provided when the
throwable was created. | public synchronized TransactionRolledbackException | initCause(Throwable throwable) Initialize the cause of the receiver. | public void | printStackTrace() Outputs a printable representation of the receiver's walkback on the
System.err stream. | public void | printStackTrace(PrintStream err) Outputs a printable representation of the receiver's walkback on the
stream specified by the argument. | public void | printStackTrace(PrintWriter err) Outputs a printable representation of the receiver's walkback on the
writer specified by the argument. | public String | toString() Answers a string containing a concise, human-readable description of the
receiver. |
TransactionRolledbackException | public TransactionRolledbackException()(Code) | | |
TransactionRolledbackException | public TransactionRolledbackException(String detailMessage)(Code) | | |
TransactionRolledbackException | public TransactionRolledbackException(String detailMessage, Throwable throwable)(Code) | | Constructs a new instance of this class with its walkback, message and
cause filled in.
Parameters: detailMessage - String The detail message for the exception. Parameters: throwable - The cause of this Throwable |
TransactionRolledbackException | public TransactionRolledbackException(Throwable throwable)(Code) | | |
getCause | public Throwable getCause()(Code) | | Answers the cause of this Throwable, or null if there is no cause.
Throwable The receiver's cause. |
getLocalizedMessage | public String getLocalizedMessage()(Code) | | Answers the extra information message which was provided when the
throwable was created. If no message was provided at creation time, then
answer null. Subclasses may override this method to answer localized text
for the message.
String The receiver's message. |
printStackTrace | public void printStackTrace()(Code) | | Outputs a printable representation of the receiver's walkback on the
System.err stream.
|
printStackTrace | public void printStackTrace(PrintStream err)(Code) | | Outputs a printable representation of the receiver's walkback on the
stream specified by the argument.
Parameters: err - PrintStream The stream to write the walkback on. |
printStackTrace | public void printStackTrace(PrintWriter err)(Code) | | Outputs a printable representation of the receiver's walkback on the
writer specified by the argument.
Parameters: err - PrintWriter The writer to write the walkback on. |
toString | public String toString()(Code) | | Answers a string containing a concise, human-readable description of the
receiver.
String a printable representation for the receiver. |
|
|
|