Bubbling exceptions and destructors

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does a caught exception still bubble up and will a destructor execute if an
exception halts execution?
 
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.
 
Back
Top