You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: chromedevtools/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/JavascriptVmEmbedderFactory.java
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -282,12 +282,15 @@ public JavascriptVmEmbedder attach(JavascriptVmEmbedder.Listener embedderListene
282
282
DebugEventListenerdebugEventListener)
283
283
throwsCoreException {
284
284
embedderListener = null;
285
+
//+ @since 0.9 modified exception message string
286
+
StringERROR_STRING = "Nodeclipse/chromedevtools failed to connect to Standalone V8 VM\n"
287
+
+"( Check Help (F1) and Support http://www.nodeclipse.org/#support ). info:"+;
285
288
try {
286
289
standaloneVm.attach(debugEventListener);
287
290
} catch (IOExceptione) {
288
-
thrownewCoreException("Failed to connect to Standalone V8 VM", e);
291
+
thrownewCoreException(ERROR_STRING, e);
289
292
} catch (UnsupportedVersionExceptione) {
290
-
thrownewCoreException("Failed to connect to Standalone V8 VM", e);
0 commit comments