39404142434445464748
@Override public Item lookupItem(String itemId) throws ItemNotFoundException { Item item = _inventory.get(itemId); if (item == null) { throw new ItemNotFoundException("We don't got any " + itemId); } return item; }