configure_exceptions
Control exception breakpoints in .NET debugging by specifying filters to decide when the debugger pauses on caught or uncaught exceptions.
Instructions
Configure which exceptions should pause the debugger.
Controls exception breakpoints — when the debugger should stop on exceptions. By default, no exception filters are set (exceptions don't pause unless uncaught).
Common filters supported by netcoredbg:
"all": Break on all exceptions (caught and uncaught)
"user-unhandled": Break on exceptions not handled in user code
Pass an empty list to disable all exception breakpoints.
Escape hatch: see the dap-escape-hatch prompt for unwrapped DAP requests.
Args: filters: List of exception filter names. Pass [] to disable.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filters | No |