Sha256: 522a07274ef08d06f3ace4c8b3eb2d6125eddbff10d9ba3df6d1afc81fc16a4c

Contents?: true

Size: 604 Bytes

Versions: 1

Compression:

Stored size: 604 Bytes

Contents

require_relative 'exception_break_mode'
require_relative 'exception_details'

# Response to ‘exceptionInfo’ request.
class DAP::ExceptionInfoResponseBody < DAP::Base
  # ID of the exception that was thrown.
  property :exceptionId, as: 'string'

  # Descriptive text for the exception provided by the debug adapter.
  property :description, required: false, as: 'string'

  # 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

1 entries across 1 versions & 1 rubygems

Version Path
ruby-dap-0.1.3 lib/dap/exception_info_response_body.rb