System.out.println("Getting account: " + name);
Account result = accounts.get(name);
if (result == null) {
AccountNotFoundExceptionType ex = new AccountNotFoundExceptionType();
ex.setName(name);
throw new AccountNotFoundException("Account Not Found", ex);
}
return result;
}