Atozed Forums

Full Version: Handling of Exceptions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Right now when an Exception is thrown the OS instantly closes (if it is not in a try catch block). This makes it difficult figuring out where the error is coming from. Is it possible to somehow show the error before closing (in the console like in a normal console application or in the debug output)?
Just add a try..except in your main func and log it there. 5 lines of code or so...