//Test with client transaction and runtime exception - the container transaction is rolled back,
//the user transaction is not affected
initialRows = rnBean.countRows();
tran.begin();
rBean.insertRow("testWithClientTranAndWithRuntimeException", 1);
try {
rnBean.insertRow("testWithClientTranAndWithRuntimeException", 2, new RuntimeException("Dummy exception"));
} catch (RuntimeException e) {
e.printStackTrace();