Skip to content

Commit 2886eef

Browse files
committed
Nodeclipse#107; String ERROR_STRING = "Nodeclipse/chromedevtools failed to connect
to Standalone V8 VM\n"
1 parent 44af2be commit 2886eef

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

chromedevtools/plugins/org.chromium.debug.core/src/org/chromium/debug/core/model/JavascriptVmEmbedderFactory.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,12 +282,15 @@ public JavascriptVmEmbedder attach(JavascriptVmEmbedder.Listener embedderListene
282282
DebugEventListener debugEventListener)
283283
throws CoreException {
284284
embedderListener = null;
285+
//+ @since 0.9 modified exception message string
286+
String ERROR_STRING = "Nodeclipse/chromedevtools failed to connect to Standalone V8 VM\n"
287+
+"( Check Help (F1) and Support http://www.nodeclipse.org/#support ). info:"+;
285288
try {
286289
standaloneVm.attach(debugEventListener);
287290
} catch (IOException e) {
288-
throw newCoreException("Failed to connect to Standalone V8 VM", e);
291+
throw newCoreException(ERROR_STRING, e);
289292
} catch (UnsupportedVersionException e) {
290-
throw newCoreException("Failed to connect to Standalone V8 VM", e);
293+
throw newCoreException(ERROR_STRING, e);
291294
}
292295
return new JavascriptVmEmbedder() {
293296
public JavascriptVm getJavascriptVm() {

0 commit comments

Comments
 (0)