Exception: MachO::DylibUnknownError

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

Overview

Raised when attempting to change a dylib name that doesn't exist.

Instance Method Summary collapse

Constructor Details

#initialize(dylib) ⇒ DylibUnknownError

Returns a new instance of DylibUnknownError.

Parameters:

  • dylib (String)

    the unknown shared library name



96
97
98
# File 'lib/macho/exceptions.rb', line 96

def initialize(dylib)
  super "No such dylib name: #{dylib}"
end