Configuration.getCompositeTransactionManager();
if ( ctm == null ) {
LOGGER.logWarning ( "ResumePreviousTransactionSubTxAwareParticipant: no transaction manager found?" );
} else {
try {
ctm.resume ( previous );
}
catch ( Exception error ) {
LOGGER.logWarning ( "ResumePreviousTransactionSubTxAwareParticipant: could not resume previous transaction" , error );
}
}