Index: OsbPlugin.java
===================================================================
--- OsbPlugin.java	(Revision 23734)
+++ OsbPlugin.java	(Arbeitskopie)
@@ -29,6 +29,7 @@
 
 import static org.openstreetmap.josm.tools.I18n.tr;
 
+
 import javax.swing.ImageIcon;
 import javax.swing.JOptionPane;
 
@@ -188,7 +189,13 @@
                     }
                 }
             } catch (Exception e) {
-                JOptionPane.showMessageDialog(Main.parent, e.getMessage());
+                if (e instanceof java.net.UnknownHostException) {
+                    String message = String.format(tr("Unknown Host: %s - Possibly there is no connection to the Internet.")
+                            , e.getMessage());
+                    JOptionPane.showMessageDialog(Main.parent, message);
+                } else {
+                    JOptionPane.showMessageDialog(Main.parent, e.getMessage());
+                }
                 e.printStackTrace();
             }
         }
