public Guest findById(final Long id) {
   final Guest guest = guestRepository.findById(id);
   if (guest == null) {
     throw new GuestNotFoundException();
   }
   return guest;
 }