Exception: MachO::CPUTypeError

Inherits:
MachOError
  • Object
show all
Defined in:
lib/macho/exceptions.rb

Overview

raised when the CPU type is unknown

Instance Method Summary collapse

Constructor Details

#initialize(num) ⇒ CPUTypeError

Returns a new instance of CPUTypeError.



29
30
31
# File 'lib/macho/exceptions.rb', line 29

def initialize(num)
	super "Unrecognized CPU type: 0x#{"%02x" % num}"
end