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 [Fixnum] the unknown number
Calls superclass method
# File lib/macho/exceptions.rb, line 91 def initialize(num) super "Unrecognized Mach-O filetype code: 0x#{"%02x" % num}" end