class MachO::LoadCommandError

Raised when an unknown load command is encountered.

Public Class Methods

new(num) click to toggle source

@param num [Fixnum] the unknown number

Calls superclass method
# File lib/macho/exceptions.rb, line 99
def initialize(num)
  super "Unrecognized Mach-O load command: 0x#{"%02x" % num}"
end