I'm currently working on a small project in which I'd like to catch crashes using sentry. The project is using the c# implementation for Godot.
Sentry needs to wrap all executing code to catch exceptions.
Is there a general entrypoint where I can place this try/catch block or would I need to add this into every section of the code that is being called by Godot?
Thanks in advance :)