class MachO::DylibUnknownError
Raised when attempting to change a dylib name that doesn’t exist.
Public Class Methods
new(dylib)
click to toggle source
@param dylib [String] the unknown shared library name
Calls superclass method
# File lib/macho/exceptions.rb, line 187 def initialize(dylib) super "No such dylib name: #{dylib}" end