Exception: MachO::LoadCommandNotSerializableError
- Inherits:
-
MachOError
- Object
- RuntimeError
- MachOError
- MachO::LoadCommandNotSerializableError
- Defined in:
- lib/macho/exceptions.rb
Overview
Raised when a load command can't be serialized.
Instance Method Summary collapse
-
#initialize(cmd_sym) ⇒ LoadCommandNotSerializableError
constructor
A new instance of LoadCommandNotSerializableError.
Constructor Details
#initialize(cmd_sym) ⇒ LoadCommandNotSerializableError
Returns a new instance of LoadCommandNotSerializableError.
152 153 154 |
# File 'lib/macho/exceptions.rb', line 152 def initialize(cmd_sym) super "Load commands of type #{cmd_sym} cannot be serialized" end |