Exception: MachO::LoadCommandError

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

Overview

raised when an unknown load command is encountered

Instance Method Summary collapse

Constructor Details

#initialize(num) ⇒ LoadCommandError

Returns a new instance of LoadCommandError.



50
51
52
# File 'lib/macho/exceptions.rb', line 50

def initialize(num)
  super "Unrecognized Mach-O load command: 0x#{"%02x" % num}"
end