Index: utils/josm/plugins/ywms/src/org/openstreetmap/josm/plugins/ywms/GeckoSupport.java
===================================================================
--- utils/josm/plugins/ywms/src/org/openstreetmap/josm/plugins/ywms/GeckoSupport.java	(revision 2281)
+++ utils/josm/plugins/ywms/src/org/openstreetmap/josm/plugins/ywms/GeckoSupport.java	(revision 2282)
@@ -1,3 +1,5 @@
 package org.openstreetmap.josm.plugins.ywms;
+
+import static org.openstreetmap.josm.tools.I18n.tr;
 
 import java.io.IOException;
@@ -35,6 +37,25 @@
 		builder.environment().put("MOZ_NO_REMOTE", "1");
 		
-		return builder.start();
+        return startProcess(builder);
 	}
+
+    /**
+     * Starts the process
+     * 
+     * @param builder The builder for the process
+     * @return The started process
+     * @throws IOException If coulnd't start the process
+     */
+    private static Process startProcess(ProcessBuilder builder) throws IOException
+    {
+        try
+        {
+            return builder.start();
+        }
+        catch(IOException ioe)
+        {
+            throw new IOException( tr("Could not start browser. Please check that the executable path is correct.")); 
+        }
+    }
 	
 	/**
@@ -70,5 +91,5 @@
 			environment.put("MOZ_FORCE_PAINT_AFTER_ONLOAD", System.getProperty("java.io.tmpdir") + "/ywms");
 		
-		return builder.start();
+		return startProcess(builder);
 	}
 	
