*
* @throws Exception the exception
*/
public static void main(String[] args) throws Exception {
WorldBankQueryFactory factory = WorldBankQueryFactory.newInstance();
CountryQuery service = factory.createCountryQuery();
List<Country> countries = service.list();
for (Country country : countries) {
printResult(country);
}
}