catch(MissingResourceException e) {
String errorMessage = "Cannot read key " + LOCATOR_CONFIG_FILE_KEY + " in " + CONFIG_FILE_NAME
+ ".properties file " + e.getMessage();
LOGGER.error(errorMessage);
LOGGER.debug("Stack trace", e);
throw new ConfigurationException(errorMessage);
}
return getLocator(locatorFileName);
}