private void validateProperty(final String section,
final String subSection, final String name, final String value) {
final PropertyEntry entry = PropertyConstraints.getInstance().getEntry(
section, subSection, name);
if (entry == null) {
throw new AnalystError("Unknown property: "
+ PropertyEntry.dotForm(section, subSection, name));
}
entry.validate(section, subSection, name, value);
}