I have the following code to pass an IP to some package that looks up the country.
WebServiceClient client = new WebServiceClient.Builder(42, "license_key").build();
InetAddress ipAddress = InetAddress.getByName("128.101.101.101");
CountryResponse response = client.country(ipAddress);
The problem is, that this gives me the error:
unreported exception UnknownHostException; must be caught or declared to be thrown
What am I doing wrong?