class MachO::LoadCommandNotSerializableError

Raised when a load command can't be serialized.

Public Class Methods

new(cmd_sym) click to toggle source

@param cmd_sym [Symbol] the load command's symbol

Calls superclass method
# File lib/macho/exceptions.rb, line 127
def initialize(cmd_sym)
  super "Load commands of type #{cmd_sym} cannot be serialized"
end