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



73
74
75
# File 'lib/macho/exceptions.rb', line 73

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