class MachO::LoadCommandNotCreatableError
Raised when a load command can’t be created manually.
Public Class Methods
new(cmd_sym)
click to toggle source
@param cmd_sym [Symbol] the uncreatable load command’s symbol
Calls superclass method
# File lib/macho/exceptions.rb, line 132 def initialize(cmd_sym) super "Load commands of type #{cmd_sym} cannot be created manually" end