configure_exceptions
Control which exceptions pause the debugger by specifying breakpoints for all or user-unhandled exceptions, or disable pausing.
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 |