73747576777879808182
public Section getSection(String name, String commentIfFail) throws RulesetException { Section retSection = sections.get(name); if (retSection == null) { throw new MissingSectionException(this, name, commentIfFail); } else { return retSection; } }