If I add this try/catch statement in my code:
try {
...
method1();
} catch (Exception e) {
call_method();
}
am I invoking "call_method()
" for any type of exception, at any level such as java.lang.NullPointerException
inside method1()
.. right ?
thanks