class MachO::FiletypeError

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

Public Class Methods

new(num) click to toggle source

@param num [Integer] the unknown number

Calls superclass method
# File lib/macho/exceptions.rb, line 116
def initialize(num)
  super "Unrecognized Mach-O filetype code: 0x%02<num>x" % { :num => num }
end