class FFIDB::FunctionNotFound

An error indicating that an FFI function was not found.

Public Class Methods

new(function_name) click to toggle source
Calls superclass method FFIDB::SymbolNotFound::new
# File lib/ffidb/errors.rb, line 42
def initialize(function_name)
  super(:function, function_name)
end