class MachO::OffsetInsertionError

Raised when a change at an offset is not valid.

Public Class Methods

new(offset) click to toggle source

@param offset [Fixnum] the invalid offset

Calls superclass method
# File lib/macho/exceptions.rb, line 144
def initialize(offset)
  super "Insertion at offset #{offset} is not valid"
end