3637383940414243
} private Account nullSafeAccountLookup(String acctId) { Account account = accountsById.get(acctId); if (account == null) throw new AccountNotFoundException(acctId); return account; }