* @param name name of the configuration
*/
public void reload(String name) throws ConfigurationManagerException {
if (configurations.containsKey(name)) {
Configuration cfg = getConfiguration(name);
ConfigurationHandler handler = getConfigurationHandler(name);
if (handler == null) {
throw new ConfigurationManagerException("There is no handler associated for this configuration");
}
cfg = handler.load(name);
configurations.put(name, cfg);
} else {
throw new ConfigurationManagerException("There is no configuration with this name");
}
}