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.ExceptionThis 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 SummaryConstructors Constructor Description UOWActionException(java.lang.Exception cause)Constructs a new UOWActionException wrapping the given Exception.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ThrowablegetCause()Returns the exception thrown by UOWManager.runUnderUOW() that caused this exception to be thrown.
 
- 
- 
- 
Method Detail- 
getCausepublic java.lang.Throwable getCause() Returns the exception thrown by UOWManager.runUnderUOW() that caused this exception to be thrown.- Overrides:
- getCausein class- java.lang.Throwable
- See Also:
- UOWManager.runUnderUOW(int, boolean, UOWAction)
 
 
- 
 
-