Raised when the CPU type/sub-type pair is unknown.
@param cputype [Fixnum] the CPU type of the unknown pair @param cpusubtype [Fixnum] the CPU sub-type of the unknown pair
# File lib/macho/exceptions.rb, line 82 def initialize(cputype, cpusubtype) super "Unrecognized CPU sub-type: 0x#{"%08x" % cpusubtype}" " (for CPU type: 0x#{"%08x" % cputype})" end