File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -143,12 +143,23 @@ def initialize_request(self, request):
143
143
self ._initialize_request = request
144
144
145
145
exception_breakpoint_filters = [
146
- {"filter" : "raised" , "label" : "Raised Exceptions" , "default" : False },
147
- {"filter" : "uncaught" , "label" : "Uncaught Exceptions" , "default" : True },
146
+ {
147
+ "filter" : "raised" ,
148
+ "label" : "Raised Exceptions" ,
149
+ "default" : False ,
150
+ "description" : "Break whenever any exception is raised." ,
151
+ },
152
+ {
153
+ "filter" : "uncaught" ,
154
+ "label" : "Uncaught Exceptions" ,
155
+ "default" : True ,
156
+ "description" : "Break when the process is exiting due to unhandled exception." ,
157
+ },
148
158
{
149
159
"filter" : "userUnhandled" ,
150
160
"label" : "User Uncaught Exceptions" ,
151
161
"default" : False ,
162
+ "description" : "Break when exception escapes into library code." ,
152
163
},
153
164
]
154
165
You can’t perform that action at this time.
0 commit comments