Hi,
I have code as following
function1()
{ .....
try
{ function2();}
catch (Exception ex1){}
finally{}
}
and function2 is
function2
{ .....
try
{ function2();}
catch (Exception ex2 ){}
finally{}
}
when ex2 happens , exception is propagated to function1 (caller) and ex1 is catched again.
How can I avoid that ex1 is catched and only be catched by ex2
Thanks

How to avoid propagation of exception
Dave Waterworth