class MachO::LCStrMalformedError

Raised when a load command string is malformed in some way.

Public Class Methods

new(lc) click to toggle source

@param lc [MachO::LoadCommand] the load command containing the string

Calls superclass method
# File lib/macho/exceptions.rb, line 160
def initialize(lc)
  super "Load command #{lc.type} at offset #{lc.view.offset} contains a " \
        "malformed string"
end