I'm currently having a problem with a Java application I'm working on. Randomly, a Java(TM) Platform SE binary error happens when the application closes. It happens when the exit method is called, either directly via or a another method or event, or when I close the application with the window close button.
Problem is, no exception is catched, and I have the following message (developing on Netbeans): Java Result: -1073741819
And nothing else. I cannot be sure it's an issue with I/O actions, or if something goes wrong with the memory. Since it's a JavaFx application, I do not know how to control the main thread and catch the right exception that would just explain to me what the matter is !
Have you seen that kind of problem before ?
I cannot show you my code due to the number of classes involved. Though, my question is not about solving the problem, just finding a way to identify it.
Thank you very much !