We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 623c4aa commit cc58a4eCopy full SHA for cc58a4e
java/src/org/openqa/selenium/remote/service/DriverService.java
@@ -242,8 +242,10 @@ public void start() throws IOException {
242
processFinished.cancel(true);
243
break;
244
case PROCESS_DIED:
245
+ int exitValue = process.exitValue();
246
process = null;
- throw new WebDriverException("Driver server process died prematurely.");
247
+ throw new WebDriverException(
248
+ "Driver server process died prematurely, exit value: " + exitValue);
249
case PROCESS_IS_ACTIVE:
250
process.shutdown();
251
throw new WebDriverException("Timed out waiting for driver server to bind the port.");
0 commit comments