in core/src/main/java/org/apache/jsieve/ConfigurationManager.java [107:118]
public ConfigurationManager() throws SieveConfigurationException {
super();
try {
parse();
} catch (SAXException e) {
LOGGER.error("Exception processing Configuration: ", e);
throw new SieveConfigurationException(e);
} catch (IOException e) {
LOGGER.error("Exception processing Configuration: ", e);
throw new SieveConfigurationException(e);
}
}