class MachO::LoadCommandError

Raised when an unknown load command is encountered.

Public Class Methods

new(num) click to toggle source

@param num [Integer] the unknown number

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