protected void assertNotLegacyElement(Element e)
{
// is this a legacy element?!?
String name = e.getNodeName();
if ("config".equals(name)) throw new LegacyConfigurationException("Legacy element encountered when using parser " + getClass().getSimpleName());
}