throw new IllegalArgumentException("null customerId");
try {
accountIds = accountHome.findByCustomerId(customerId);
if (accountIds.isEmpty())
throw new AccountNotFoundException();
} catch (Exception ex) {
throw new AccountNotFoundException();
}
ArrayList accountList = new ArrayList();
Iterator i = accountIds.iterator();