private void validateDescription(I_ConceptualizeLocally local)
     throws IOException, TerminologyException {
   boolean found = false;
   for (I_DescribeConceptLocally desc : local.getDescriptions()) {
     if (desc.getText().equals(description)) {
       found = true;
       break;
     }
   }
   if (found == false) {
     throw new RuntimeException(
         "No description matching: " + description + " found for: " + local);
   }
 }