CommonUtil.buildOMElement(new FileInputStream(throttlingConfigFile));
deserialize(throttlingConfig);
} catch (FileNotFoundException e) {
String msg = "Unable to find the file: " + throttlingConfigFile + ".";
log.error(msg, e);
throw new ThrottlingException(msg, e);
} catch (Exception e) {
String msg = "Error in building the throttling config, config file: " +
throttlingConfigFile + ".";
log.error(msg, e);
throw new ThrottlingException(msg, e);
}
}