Exception: MachO::RpathUnknownError

Inherits:
RecoverableModificationError show all
Defined in:
lib/macho/exceptions.rb

Overview

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

Instance Attribute Summary

Attributes inherited from RecoverableModificationError

#macho_slice

Instance Method Summary collapse

Methods inherited from RecoverableModificationError

#to_s

Constructor Details

#initialize(path) ⇒ RpathUnknownError

Returns a new instance of RpathUnknownError.

Parameters:

  • path (String)

    the unknown runtime path



202
203
204
# File 'lib/macho/exceptions.rb', line 202

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