valid = false;
found = true;
message = validator.getMessage(new ValidatorContextImpl(expressionContext, this));
if (message == null) {
throw new CustomErrorNotFoundException("No message specified for error ID \"" + id + "\" in "
+ this);
}
break;
}
}
if (found) {
((GroupImpl) getGroup()).setValid(valid);
} else {
throw new CustomErrorNotFoundException("Specified error ID \"" + id + "\" was not found in " + this);
}
}
}