class MachO::CPUTypeError

Raised when the CPU type is unknown.

Public Class Methods

new(cputype) click to toggle source

@param cputype [Integer] the unknown CPU type

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