public static Object run() throws ExcepcaoInexistente, FenixServiceException {
List<InfoCountry> result = new ArrayList<InfoCountry>();
Collection<Country> countries = Bennu.getInstance().getCountrysSet();
if (countries.isEmpty()) {
throw new ExcepcaoInexistente("Non existing Countries !!");
}
for (Country country : countries) {
result.add(InfoCountry.newInfoFromDomain(country));
}