exception_autopsy
Retrieves complete exception context including type, inner exceptions, stack frames, local variables, and source code snippet when debugging an ASP.NET Core application.
Instructions
Full exception context in one call: exception type + inner-exception chain + top stack frames + top frame's locals + source snippet around the throw. Call this when state.lastStop.reason == "exception".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| threadId | No | Thread id. Defaults to the last-stopped thread. | |
| frameCount | No | How many top stack frames to include. Default 20. |