1

Everytime I try to run my project netbeans gives me the following error:

AppData\Local\NetBeans\Cache\8.2\executor-snippets\run.xml:53: Java returned: -1073740791

Tried to run in another PC and it works, other projects also works. I gotta delivery this project tomorrow and don't know what to do :/

PS: Sorry for my bad english.

Alcides Bezerra
  • 417
  • 4
  • 11

1 Answers1

0

Here is the line 53 from the xml

    <java classpath="${classpath-translated}" classname="${classname}" dir="${work.dir}" jvm="${platform.java}" fork="true" failonerror="${java.failonerror}">

Looking on it I can assume that you should check these:

  1. Check libs which your project have in dependencies.
  2. Take a look here. Maybe you have main class undefined in the project properties.
Community
  • 1
  • 1
Igor
  • 608
  • 6
  • 11