if (personSet.isEmpty() && personNamesSet.isEmpty()) {
throw new PersonNotFoundException();
}
if (personSet.size() > 1) {
throw new MultiplePersonFoundByDocumentIdException(getPersonalBean().getIdentificationNumber());
}
if (personSet.isEmpty()) {
checkPossibleCandidates(personNamesSet);
}