class MachO::CPUTypeError
Raised when the CPU type is unknown.
Public Class Methods
new(cputype)
click to toggle source
@param cputype [Fixnum] the unknown CPU type
Calls superclass method
# File lib/macho/exceptions.rb, line 73 def initialize(cputype) super "Unrecognized CPU type: 0x#{"%08x" % cputype}" end