[103676] logging exceptions rather than letting the workbench pop up the annoying dialog.
diff --git a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/reconcile/DirtyRegionProcessor.java b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/reconcile/DirtyRegionProcessor.java
index e1b7243..0b65b13 100644
--- a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/reconcile/DirtyRegionProcessor.java
+++ b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/internal/reconcile/DirtyRegionProcessor.java
@@ -412,6 +412,12 @@
 				process(toRefresh[i]);
 			}
 		}
+		catch(Exception e) {
+		    // https://bugs.eclipse.org/bugs/show_bug.cgi?id=103676
+			// stop errors from popping up a dialog
+			// from the job manager
+			Logger.logException("problem with as-you-type validation", e);
+		}
 		finally {
 			monitor.done();
 		}