throw new IllegalArgumentException("null accountId");
try {
customerIds = customerHome.findByAccountId(accountId);
if (customerIds.isEmpty())
throw new CustomerNotFoundException();
} catch (FinderException fx) {
throw new CustomerNotFoundException();
}
ArrayList customerList = new ArrayList();
Iterator i = customerIds.iterator();