I've implemented JXMapKit in my Java application. How can the java.net.UnknownHostException ("SEVERE: Failed to load a tile at url: ...")
, which is raised f.ex. when the internet connection is down, be caught? Do I need to override something from the library?
I have tried to surround all of the lines that have anything to do with the map with try {} catch (Exception e) {}
but it seems that the exception cannot be caught that way.