Sha256: e9acb252e13a66708ffea89b62b3dbdaf6cab29931e82cf1818a3ed03561c720
Contents?: true
Size: 533 Bytes
Versions: 3
Compression:
Stored size: 533 Bytes
Contents
require_relative 'exception_break_mode' require_relative 'exception_details' class DAP::ExceptionInfoResponseBody < DAP::Base # ID of the exception that was thrown. property :exceptionId # Descriptive text for the exception provided by the debug adapter. property :description, required: false # Mode that caused the exception notification to be raised. property :breakMode, as: DAP::ExceptionBreakMode # Detailed information about the exception. property :details, required: false, as: DAP::ExceptionDetails end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-dap-0.1.2 | lib/dap/exception_info_response_body.rb |
ruby-dap-0.1.1 | lib/dap/exception_info_response_body.rb |
ruby-dap-0.1.0 | lib/dap/exception_info_response_body.rb |