Exception: MachO::FiletypeError
- Inherits:
-
MachOError
- Object
- RuntimeError
- MachOError
- MachO::FiletypeError
- Defined in:
- lib/macho/exceptions.rb
Overview
Raised when a mach-o file's filetype field is unknown.
Instance Method Summary collapse
-
#initialize(num) ⇒ FiletypeError
constructor
A new instance of FiletypeError.
Constructor Details
#initialize(num) ⇒ FiletypeError
Returns a new instance of FiletypeError.
116 117 118 |
# File 'lib/macho/exceptions.rb', line 116 def initialize(num) super "Unrecognized Mach-O filetype code: 0x%02<num>x" % { :num => num } end |