Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To fix this problem, make sure your environment variable is set to the path of version 1.6 or newer of the JDK. 

First-time exceptions in Visual Studio

When the debug mode is enabled, the debugger gets the first chance to see all exceptions before the program does. If the debugger allows the program execution to continue, the program will see the exception as usual. If the program does not handle the exception, the debugger gets a second chance to see the exception, normally causing the program to crash if the debugger were not present.

When running an application with a debug mode enabled in Visual Studio, you may see the following message in the output window:

"First-chance exception at 0x76c1b727 in yourapp.exe: some_exception_type at memory location 0x0033411c"

The above message doesn't indicate that LM-X didn't handle an exception, but only notifies you that the exception occurred. If LM-X handles the exception gracefully, no second chance exception will appear.

Please note that LM-X guarantees exception safety and doesn't leave any exceptions unhandled, even if they occur internally.