Class: Debugger::ExecError
- Inherits:
-
Object
- Object
- Debugger::ExecError
- Defined in:
- lib/ruby-debug-ide/xml_printer.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#backtrace ⇒ Object
readonly
Returns the value of attribute backtrace.
-
#message ⇒ Object
readonly
Returns the value of attribute message.
Instance Method Summary collapse
-
#initialize(message, backtrace = []) ⇒ ExecError
constructor
A new instance of ExecError.
Constructor Details
#initialize(message, backtrace = []) ⇒ ExecError
Returns a new instance of ExecError.
17 18 19 20 |
# File 'lib/ruby-debug-ide/xml_printer.rb', line 17 def initialize(, backtrace = []) @message = @backtrace = backtrace end |
Instance Attribute Details
#backtrace ⇒ Object (readonly)
Returns the value of attribute backtrace.
15 16 17 |
# File 'lib/ruby-debug-ide/xml_printer.rb', line 15 def backtrace @backtrace end |
#message ⇒ Object (readonly)
Returns the value of attribute message.
14 15 16 |
# File 'lib/ruby-debug-ide/xml_printer.rb', line 14 def @message end |