What are the best practices to consider when catching exceptions and re-throwing them? I want to make sure that the Exception object\'s InnerException
Exception
InnerException
You may also use:
try { // Dangerous code } finally { // clean up, or do nothing }
And any exceptions thrown will bubble up to the next level that handles them.