try {
getAccountSession().transfer( pFromAccountId, pToAccountId, pAmount );
}
catch( Exception e ) {
sessionCtx.setRollbackOnly();
throw new BankException( "Could not transfer " + pAmount +
" from " + pFromAccountId + " to " + pToAccountId, e );
}
}