Exception: MachO::RpathUnknownError
- Inherits:
- 
      RecoverableModificationError
      
        - Object
- RuntimeError
- MachOError
- ModificationError
- RecoverableModificationError
- MachO::RpathUnknownError
 
- 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
Instance Method Summary collapse
- 
  
    
      #initialize(path)  ⇒ RpathUnknownError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RpathUnknownError. 
Methods inherited from RecoverableModificationError
Constructor Details
#initialize(path) ⇒ RpathUnknownError
Returns a new instance of RpathUnknownError.
| 177 178 179 | # File 'lib/macho/exceptions.rb', line 177 def initialize(path) super "No such runtime path: #{path}" end |