Index: trunk/src/org/openstreetmap/josm/gui/dialogs/relation/sort/WayConnectionTypeCalculator.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/relation/sort/WayConnectionTypeCalculator.java	(revision 15381)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/relation/sort/WayConnectionTypeCalculator.java	(revision 15382)
@@ -13,5 +13,4 @@
 import org.openstreetmap.josm.data.osm.Way;
 import org.openstreetmap.josm.gui.dialogs.relation.sort.WayConnectionType.Direction;
-import org.openstreetmap.josm.tools.JosmRuntimeException;
 import org.openstreetmap.josm.tools.bugreport.BugReport;
 
@@ -48,7 +47,8 @@
             try {
                 lastWct = updateLinksFor(con, lastWct, i);
-            } catch (JosmRuntimeException | IllegalArgumentException | IllegalStateException e) {
+            } catch (RuntimeException e) {
                 int index = i;
-                throw BugReport.intercept(e).put("i", i).put("member", () -> members.get(index)).put("con", con);
+                throw BugReport.intercept(e).put("i", i).put("member", () -> members.get(index)).put("con", con)
+                    .put("members", members).put("lastWct", lastWct).put("firstGroupIdx", firstGroupIdx);
             }
         }
