Exception: MachO::FiletypeError

Inherits:
MachOError
  • Object
show all
Defined in:
lib/macho/exceptions.rb

Overview

Raised when a mach-o file's filetype field is unknown.

Instance Method Summary collapse

Constructor Details

#initialize(num) ⇒ FiletypeError

Returns a new instance of FiletypeError.

Parameters:

  • num (Fixnum)

    the unknown number



47
48
49
# File 'lib/macho/exceptions.rb', line 47

def initialize(num)
	super "Unrecognized Mach-O filetype code: 0x#{"%02x" % num}"
end