mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Add tooltips for exception breakpoint filters. (#790)
This commit is contained in:
parent
cf0d684566
commit
baf6121065
1 changed files with 13 additions and 2 deletions
|
|
@ -143,12 +143,23 @@ class Client(components.Component):
|
|||
self._initialize_request = request
|
||||
|
||||
exception_breakpoint_filters = [
|
||||
{"filter": "raised", "label": "Raised Exceptions", "default": False},
|
||||
{"filter": "uncaught", "label": "Uncaught Exceptions", "default": True},
|
||||
{
|
||||
"filter": "raised",
|
||||
"label": "Raised Exceptions",
|
||||
"default": False,
|
||||
"description": "Break whenever any exception is raised.",
|
||||
},
|
||||
{
|
||||
"filter": "uncaught",
|
||||
"label": "Uncaught Exceptions",
|
||||
"default": True,
|
||||
"description": "Break when the process is exiting due to unhandled exception.",
|
||||
},
|
||||
{
|
||||
"filter": "userUnhandled",
|
||||
"label": "User Uncaught Exceptions",
|
||||
"default": False,
|
||||
"description": "Break when exception escapes into library code.",
|
||||
},
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue