Index: /applications/editors/josm/plugins/seachart/src/render/Rules.java
===================================================================
--- /applications/editors/josm/plugins/seachart/src/render/Rules.java	(revision 33192)
+++ /applications/editors/josm/plugins/seachart/src/render/Rules.java	(revision 33193)
@@ -252,5 +252,5 @@
 
     public static void rules() {
-        // CHECKSTYLE.OFF: NeedBraces
+    	try {
         if ((Renderer.context.ruleset() == RuleSet.ALL) || (Renderer.context.ruleset() == RuleSet.BASE)) {
             if (testObject(Obj.LNDARE)) for (Feature f : objects) if (testFeature(f)) areas();
@@ -347,5 +347,7 @@
             if (testObject(Obj.BCNSPP)) for (Feature f : objects) if (testFeature(f)) beacons();
         }
-        // CHECKSTYLE.ON: NeedBraces
+    	} catch (Exception e) {
+    		return;	// Just skip this pass
+    	}
     }
 
