문제

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?

도움이 되었습니까?

해결책

If you don't catch the exception then it will automatically bubble up through the call stack. If you've not caught the exception in function2 or function3, you'll be able to catch it in function1.

다른 팁

That's the whole point of exceptions. You can capture them at any point in the function (whether it be a simple function, or a method call) call stack using a try catch statement,

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top