Sha256: e209d2b11bce26472f75b860bf988190d744eef62ceb8ccf37c0be52e7fb4df0

Contents?: true

Size: 722 Bytes

Versions: 3

Compression:

Stored size: 722 Bytes

Contents

require_relative 'exception_details'

class DAP::ExceptionDetails < DAP::Base
  # Message contained in the exception.
  property :message, required: false

  # Short type name of the exception object.
  property :typeName, required: false

  # Fully-qualified type name of the exception object.
  property :fullTypeName, required: false

  # Optional expression that can be evaluated in the current scope to obtain the exception object.
  property :evaluateName, required: false

  # Stack trace at the time the exception was thrown.
  property :stackTrace, required: false

  # Details of the exception contained by this exception, if any.
  property :innerException, required: false, as: many(DAP::ExceptionDetails)
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby-dap-0.1.2 lib/dap/exception_details.rb
ruby-dap-0.1.1 lib/dap/exception_details.rb
ruby-dap-0.1.0 lib/dap/exception_details.rb