Supposing I have this scenario:
function1() call to function2(), and function2() call to function3().
if function3() throws an exception, can I capture the exception from function1()?
And in the case in which maybe, some of these functions is in a different class?, can I continue capturing from function1?