Exception: MachO::FiletypeError

Inherits:
MachOError
  • Object
show all
Defined in:
lib/macho/exceptions.rb

Overview

raised when a mach-o file’s filetype field is unknown

Instance Method Summary collapse

Constructor Details

#initialize(num) ⇒ FiletypeError



43
44
45
# File 'lib/macho/exceptions.rb', line 43

def initialize(num)
  super "Unrecognized Mach-O filetype code: 0x#{"%02x" % num}"
end