I am using a try/catch block to catch errors that occur in my code and it is working well. The problem is that because the code is in a try/catch block, the error/reason that caused it to fail (like it could not find a click or an object reference was not set) does not appear in the output anymore, which makes it harder to find the problem.
Is there a way to make this still appear? Is it as simple as writing out the exception as a string? Thanks