Index: applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/i18n/Messages.java
===================================================================
--- applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/i18n/Messages.java	(revision 11222)
+++ applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/i18n/Messages.java	(revision 11223)
@@ -28,5 +28,4 @@
 package org.openstreetmap.josm.plugins.osb.i18n;
 
-import java.io.IOException;
 import java.io.InputStream;
 import java.text.MessageFormat;
@@ -43,9 +42,9 @@
         try {
             loadBundle(Locale.getDefault());
-        } catch (IOException e) {
-        	e.printStackTrace();
+        } catch (Exception e) {
+        	System.err.println("Couldn't load resource bundle for locale " + Locale.getDefault());
             try {
                 loadBundle(Locale.ENGLISH);
-            } catch (IOException e1) {
+            } catch (Exception e1) {
                 System.err.println("Couldn't load default resource bundle");
                 e.printStackTrace();
@@ -67,5 +66,5 @@
     }
     
-    private void loadBundle(Locale locale) throws IOException {
+    private void loadBundle(Locale locale) throws Exception {
     	System.out.println("Trying to load locale " + locale.getLanguage() + " for openstreetbugs");
         InputStream in = Messages.class.getResourceAsStream("language_" + locale.getLanguage() + ".properties");
