try
{
// find a doctor that can help our patient. Note, if none found, will throw an exception
System.out.println("*** Looking for doctor that can help our patient...\n");
Doctor doctor = providerProcessor.findDoctor(patient);
// notice that list of patients now includes our patient, Bill Gates
System.out.println("*** Found doctor for our patient. Doctor found is:\n" + doctor);
// assign doctor as patient's doctor