class Byebug::DAP::InvalidRequestArgumentError

Raised when the client sends a request with invalid arguments @api private

Attributes

error[R]

The error kind or message. @return [std:Symbol|std:String]

scope[R]

The error scope.

value[R]

The error value.

Public Class Methods

new(error, value: nil, scope: nil) click to toggle source
# File lib/byebug/dap/helpers/invalid_request_argument_error.rb, line 16
def initialize(error, value: nil, scope: nil)
  @error = error
  @value = value
  @scope = scope
end