try {
packageConfigs = CommonUtil.buildOMElement(new FileInputStream(configFilePath));
} catch (Exception e) {
String msg = "Error in deserializing the packageConfigs file: " + configFilePath + ".";
log.error(msg, e);
throw new StratosException(msg, e);
}
@SuppressWarnings("unchecked")
Iterator<OMElement> packageConfigsChildsIt = packageConfigs.getChildElements();
while (packageConfigsChildsIt.hasNext()) {