Class: DAP::ExceptionBreakMode
- Defined in:
- lib/dap/exception_break_mode.rb
Overview
This enumeration defines all possible conditions when a thrown exception should result in a break.
Constant Summary collapse
- NEVER =
never breaks
new('never')
- ALWAYS =
always breaks
new('always')
- UNHANDLED =
breaks when exception unhandled
new('unhandled')
- USERUNHANDLED =
breaks if the exception is not handled by user code
new('userUnhandled')