Sha256: 4acf832a78533ad4d0684c611e6617b931c16ffa626fcc68961b1854d0534777
Contents?: true
Size: 520 Bytes
Versions: 1
Compression:
Stored size: 520 Bytes
Contents
module Byebug module DAP # Raised when the client sends a request with invalid arguments # @api private class InvalidRequestArgumentError < StandardError # The error kind or message. # @return [std:Symbol|std:String] attr_reader :error # The error value. attr_reader :value # The error scope. attr_reader :scope def initialize(error, value: nil, scope: nil) @error = error @value = value @scope = scope end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
byebug-dap-0.1.4 | lib/byebug/dap/helpers/invalid_request_argument_error.rb |