G Guest Mar 18, 2005 #1 Does a caught exception still bubble up and will a destructor execute if an exception halts execution?
Does a caught exception still bubble up and will a destructor execute if an exception halts execution?
D David Levine Mar 19, 2005 #2 Halts execution of what? The method that contains the catch, the finalizer, the application? If an exception is caught then by definition it is not still bubbling up except for a ThreadAbortException.
Halts execution of what? The method that contains the catch, the finalizer, the application? If an exception is caught then by definition it is not still bubbling up except for a ThreadAbortException.