> */
> public void close() {
> - closeQuietly(dnsApi);
> + if (dnsApi != null) {
> + try {
> + dnsApi.close();
> + }
> + catch (Exception e) {
> + e.printStackTrace();
> + }Why catching exceptions around _this_ `.close()` and not in the other examples? Is there something specific to CloudDNSApi going on here? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-examples/pull/10/files#r5134210
