oracle.olapi.transaction
Class ActiveSubtransactionsException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--java.lang.IllegalStateException
|
+--oracle.olapi.transaction.ActiveSubtransactionsException
- public class ActiveSubtransactionsException
- extends java.lang.IllegalStateException
Indicates that the current Transaction
has child Transaction
objects that the application must prepare and commit, or roll back, before preparing or rolling back the current Transaction
.
- See Also:
- Serialized Form
Method Summary |
java.util.List |
getActiveSubTransactions()
Gets a List of the active child Transaction objects of a Transaction . |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ActiveSubtransactionsException
public ActiveSubtransactionsException(java.util.List transactions)
- Creates an
ActiveSubtransactionsException
.
-
- Parameters:
transactions
- A List
of the Transaction
objects that are active children of a Transaction
.
getActiveSubTransactions
public java.util.List getActiveSubTransactions()
- Gets a
List
of the active child Transaction
objects of a Transaction
. A child Transaction
is active until it is either prepared and committed or it is rolled back.
-
- Returns:
- List A
List
of the active child Transaction
objects of a Transaction
.
Copyright © 2002, 2005, Oracle. All rights reserved.