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



78
79
80
# File 'lib/macho/exceptions.rb', line 78

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