class SyntaxTree::YARV::VM::ThrownError
Attributes
Public Class Methods
Source
# 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
Calls superclass method