89909192939495969798
public Customer getCustomer(String id) throws CustomerNotFoundException { Customer customer = customers.get(id); if (customer == null) { throw new CustomerNotFoundException("Customer " + id + " not found"); } return customer; }
90919293949596979899
88899091929394959697