Exception: MachO::RpathUnknownError

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

Overview

Raised when attempting to change an rpath that doesn't exist.

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ RpathUnknownError

Returns a new instance of RpathUnknownError.

Parameters:

  • path (String)

    the unknown runtime path



81
82
83
# File 'lib/macho/exceptions.rb', line 81

def initialize(path)
  super "No such runtime path: #{path}"
end