private void rollback() throws IllegalStateException, SysException
{
Stack errors = new Stack ();
for ( int i = 0; i < subtxawares_.size (); i++ ) {
SubTxAwareParticipant subtxaware = (SubTxAwareParticipant) subtxawares_
.get ( i );
subtxaware.rolledback ( ct_ );
// NOTE: this can NOT be done by coordinator imp.,
// since that one will not know which tx is locally done!
}
// Added (bug discovered by MM):