class SyntaxTree::YARV::VM::ThrownError

Attributes

value[R]

Public Class Methods

new(value, backtrace) click to toggle source
Calls superclass method
# File lib/syntax_tree/yarv/vm.rb, line 79
def initialize(value, backtrace)
  super("This error was thrown by the Ruby VM.")
  @value = value
  set_backtrace(backtrace)
end