* Begins a mandatory transaction.
*/
public void beginMandatory()
{
try {
TransactionManagerImpl tm = TransactionManagerImpl.getLocal();
Transaction xa = tm.getTransaction();
if (xa == null)
throw new EJBTransactionRequiredException(L
.l("Transaction required for 'Mandatory' transaction attribute"));
} catch (RuntimeException e) {