configure_exceptions
Set exception breakpoints to control when the debugger pauses on exceptions. Use filters like 'all' or 'user-unhandled', or pass an empty list to disable.
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 |