namespace Dalamud.Common; /// Enum describing what to do on unhandled exceptions. public enum UnhandledExceptionHandlingMode { /// Always show Dalamud Crash Handler on crash, except for some exceptions. /// See `vectored_exception_handler` in `veh.cpp`. Default, /// Waits for debugger if none is attached, and pass the exception to the next handler. /// See `exception_handler` in `veh.cpp`. StallDebug, /// Do not register an exception handler. None, }