ExceptionHandlingState Enum
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the exception handling state when the exception event was written.
public enum class ExceptionHandlingState
public enum class ExceptionHandlingState
enum ExceptionHandlingState
public enum ExceptionHandlingState
type ExceptionHandlingState =
Public Enum ExceptionHandlingState
- Inheritance
-
ExceptionHandlingState
Name | Value | Description |
---|---|---|
Unknown | 0 | An unknown exception handling state. |
Thrown | 1 | The exception handling state was recorded where the exception is thrown. |
Caught | 2 | The exception handling state was recorded where the exception is caught. |
Eclipsed | 3 | The exception handling state was recorded where the exception is discarded because another exception is replacing it. |
Suppressed | 4 | The exception handling state was recorded where the exception is suppressed because the exception filter processing is finished and the exception will be discarded. |
Unhandled | 5 | The exception handling state was recorded where the exception is unhandled. |
Product | Versions |
---|---|
Visual Studio SDK | 2015, 2017, 2019, 2022 |