class Elf::SymbolTable::UnknownSymbol
Exception thrown when requesting a symbol that is not in the table
Public Class Methods
new(name_or_idx, section)
click to toggle source
Calls superclass method
# File lib/elf/symboltable.rb, line 42 def initialize(name_or_idx, section) super("Symbol #{name_or_idx} not found in section #{section.name}") end