try {
ConstraintChecks constraintChecks = constraintCheckFactory.getConstraintChecks(
annotatedElement, oneAnnotationMirror
);
Set<ConstraintCheckError> errors = constraintChecks.execute( annotatedElement, oneAnnotationMirror );
messager.reportErrors( errors );
}
//HV-293: if single constraints can't be properly checked, report this and
//proceed with next constraints
catch ( Exception e ) {