class MachO::FatArchOffsetOverflowError

Raised when attempting to create a {FatFile} from one or more {MachOFile}s

whose offsets will not fit within the resulting 32-bit {Headers::FatArch#offset} fields.

Public Class Methods

new(offset) click to toggle source

@param offset [Integer] the offending offset

Calls superclass method
# File lib/macho/exceptions.rb, line 227
def initialize(offset)
  super "Offset #{offset} exceeds the 32-bit width of a fat_arch offset. " \
        "Consider merging with `fat64: true`"
end