// The transaction attribute is never, so when the method is called with
// a transactional context, an exception must be throw.
UserTransaction utx = TransactionHelper.getInternalUserTransaction();
try {
utx.begin();
bean.insertTable03(DB_NAME, TABLE_NAME);
fail("A method with transaction attribute never is not throwing an "
+ "EJBException when it is called with transaction context");
} catch (Exception e) {
assertTrue(e instanceof EJBException,