| Anterior | Siguiente |
| STATUS_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS | STATUS_CLUSTER_NODE_ALREADY_UP |
DBG_EXCEPTION_NOT_HANDLED
Qué significa DBG_EXCEPTION_NOT_HANDLED
DBG_EXCEPTION_NOT_HANDLED indica que el debugger devuelve la excepción al sistema para que siga la búsqueda normal de handlers del proceso. No significa que la excepción sea fatal necesariamente.
En first chance, la aplicación todavía puede manejarla. Si vuelve como second chance y sigue sin manejarse, el proceso normalmente terminará.
Qué comprobar
- Diferencie first-chance y second-chance del mismo exception code.
- Registre qué exception filters/handlers del target reciben después el evento.
- No confunda esta decisión con el error original.
- Para breakpoints propios del debugger, evitar not-handled puede impedir que el target vea una excepción artificial.
Referencias técnicas
- Microsoft Open Specifications: NTSTATUS values
- Microsoft: ContinueDebugEvent
- Microsoft: EXCEPTION_DEBUG_INFO
- Microsoft: writing the debugger main loop
¿Buscas un código diferente? Buscar otro código de estado o error.
