Package com.ibm.wsspi.uow
Class UOWActionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.wsspi.uow.UOWActionException
-
- All Implemented Interfaces:
java.io.Serializable
public class UOWActionException extends java.lang.Exception
This exception is thrown by UOWManager.runUnderUOW() to indicate that the action being performed threw a checked exception. The exception thrown by the action can be obtained by calling the getCause() method.
-
-
Constructor Summary
Constructors Constructor Description UOWActionException(java.lang.Exception cause)
Constructs a new UOWActionException wrapping the given Exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Throwable
getCause()
Returns the exception thrown by UOWManager.runUnderUOW() that caused this exception to be thrown.
-
-
-
Method Detail
-
getCause
public java.lang.Throwable getCause()
Returns the exception thrown by UOWManager.runUnderUOW() that caused this exception to be thrown.- Overrides:
getCause
in classjava.lang.Throwable
- See Also:
UOWManager.runUnderUOW(int, boolean, UOWAction)
-
-