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

Returns a new instance of FiletypeError.

Parameters:

  • num (Integer)

    the unknown number



94
95
96
# File 'lib/macho/exceptions.rb', line 94

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