Andrew Lee
Andrew Lee

Reputation: 43

Java Eclipse <terminated, exit value: -1073740791>

<terminated, exit value: -1073740791>C:\Program Files\Java\jre1.8.0_111\bin\javaw.exe

I receive the above message when I attempt to debug why my code is suddenly terminating without error in Eclipse. I am able to run the exact same code on a different machine with a different installation of Eclipse Neon.

Based on debugging I've found that it terminates at the following statement

bot = new Robot();

Things I've tried...

I have a feeling it has something to do with this specific eclipse settings as the code runs perfectly fine on another machine/eclipse setup.

Thanks in advance for any/all help.

Upvotes: 4

Views: 2325

Answers (1)

yalchin.av
yalchin.av

Reputation: 86

I had the same exit value (-1073740791) while writing javaFX application in NetBeans and IntelliJ. My problem was solved when I rolled back the NVIDIA Driver from version 378.49 to the version 376.33. You can see more details on JavaFX apllication does not run with Selenium WebDriver

Upvotes: 2

Related Questions