public Reservation findById(final Long id) {
   final Reservation reservation = reservationRepository.findById(id);
   if (reservation == null) {
     throw new GuestNotFoundException();
   }
   return reservation;
 }