url = FileLocatorUtils.obtainFileSystem(locator).getURL(
locator.getBasePath(), fileName);
}
catch (MalformedURLException e)
{
throw new ConfigurationException(e);
}
if (url == null)
{
throw new ConfigurationException(
"Cannot locate configuration source " + fileName);
}
save(url, locator);
}