List of exceptions that CAN'T be caught in .NET

前端 未结 8 1357
忘掉有多难
忘掉有多难 2020-11-30 09:16

What is the list of exceptions that CAN\'T be caught in .NET? Or where can I find such a list?

8条回答
  •  眼角桃花
    2020-11-30 09:20

    The only exception that cannot be caught directly is (a framework thrown) StackOverflowException. This makes sense, logically, as you don't have the space in the stack to handle the exception at that point. From the docs:

    Starting with the .NET Framework version 2.0, a StackOverflowException object cannot be caught by a try-catch block and the corresponding process is terminated by default.

    ThreadAbortException can be caught, but will always get re-raised, so has unique behavior. From the docs:

    ThreadAbortException is a special exception that can be caught, but it will automatically be raised again at the end of the catch block.

    Also note that some AccessViolationException instances are corrupted state exceptions, and may not get handled by default. These can be handled, but require extra handling via attributes. For details, see Handling Corrupted State Exceptions.

提交回复
热议问题