+ " Differs from: " + person.getSocialSecurityNumber());
}
if (person.getDateOfBirthYearMonthDay() == null
|| !person.getDateOfBirthYearMonthDay().isEqual(getPersonalBean().getDateOfBirth())) {
throw new BirthdayMismatchException("Original: " + getPersonalBean().getDateOfBirth() + " Differs from: "
+ person.getDateOfBirthYearMonthDay());
}
return person;
}