Exception: Elf::SymbolTable::UnknownSymbol
- Inherits:
-
Exception
- Object
- Exception
- Elf::SymbolTable::UnknownSymbol
- Defined in:
- lib/elf/symboltable.rb
Overview
Exception thrown when requesting a symbol that is not in the table
Instance Method Summary collapse
-
#initialize(name_or_idx, section) ⇒ UnknownSymbol
constructor
A new instance of UnknownSymbol.
Constructor Details
#initialize(name_or_idx, section) ⇒ UnknownSymbol
Returns a new instance of UnknownSymbol.
43 44 45 |
# File 'lib/elf/symboltable.rb', line 43 def initialize(name_or_idx, section) super("Symbol #{name_or_idx} not found in section #{section.name}") end |