Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/cache/CacheUtils.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/cache/CacheUtils.java	(revision 31549)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/cache/CacheUtils.java	(revision 31612)
@@ -82,9 +82,5 @@
   public static void submit(String key, MapillaryCache.Type type,
       ICachedLoaderListener lis) {
-    try {
-      new MapillaryCache(key, type).submit(lis, false);
-    } catch (IOException e) {
-      Main.error(e);
-    }
+    new MapillaryCache(key, type).submit(lis, false);
   }
 
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryMainDialog.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryMainDialog.java	(revision 31549)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryMainDialog.java	(revision 31612)
@@ -244,9 +244,5 @@
         this.thumbnailCache = new MapillaryCache(mapillaryImage.getKey(),
             MapillaryCache.Type.THUMBNAIL);
-        try {
-          this.thumbnailCache.submit(this, false);
-        } catch (IOException e) {
-          Main.error(e);
-        }
+        this.thumbnailCache.submit(this, false);
 
         // Downloads the full resolution image.
@@ -256,9 +252,5 @@
           this.imageCache = new MapillaryCache(mapillaryImage.getKey(),
               MapillaryCache.Type.FULL_IMAGE);
-          try {
-            this.imageCache.submit(this, false);
-          } catch (IOException e) {
-            Main.error(e);
-          }
+          this.imageCache.submit(this, false);
         }
       } else if (this.image instanceof MapillaryImportedImage) {
