* @param filePath
* @throws Exception
*/
private void loadCountriesFiles(String filePath) throws Exception {
SAXReader reader = new SAXReader();
Document document = reader.read(filePath
+ ImportInitvalues.nameOfCountriesFile);
Element root = document.getRootElement();
for (Iterator it = root.elementIterator("country"); it.hasNext();) {