class Elf::Section::UnknownType

Attributes

section_name[R]
type_id[R]

Public Class Methods

new(type_id, section_name) click to toggle source
Calls superclass method
# File lib/elf/section.rb, line 43
def initialize(type_id, section_name)
  @type_id = type_id
  @section_name = section_name
  super(sprintf("Unknown section type 0x%08x for section #{@section_name}", @type_id))
end