if (sSanitizedBusinessName.length()==0) {
oSes.disconnect();
oSes.close();
throw new IllegalArgumentException("Business Name cannot be empty");
}
SortableList<Document> oLst = (SortableList<Document>) oIdx.query("business_name:\"" + sSanitizedBusinessName + "\" AND " + DocumentIndexer.AdditionalDocumentFields.DOCUMENT_TYPE_NAME.value() + ":" + sTypeName);
if (oLst.isEmpty()) {
oSes.disconnect();
oSes.close();
throw new ElementNotFoundException(sBusinessName+" not found");
} else {