class MachO::CPUSubtypeError

Raised when the CPU type/sub-type pair is unknown.

Public Class Methods

new(cputype, cpusubtype) click to toggle source

@param cputype [Integer] the CPU type of the unknown pair @param cpusubtype [Integer] the CPU sub-type of the unknown pair

Calls superclass method
# File lib/macho/exceptions.rb, line 107
def initialize(cputype, cpusubtype)
  super "Unrecognized CPU sub-type: 0x%08<cpusubtype>x " \
        "(for CPU type: 0x%08<cputype>x" % { :cputype => cputype, :cpusubtype => cpusubtype }
end