Exception: FFIDB::FunctionNotFound

Inherits:
SymbolNotFound show all
Defined in:
lib/ffidb/errors.rb

Overview

An error indicating that an FFI function was not found.

Constant Summary

Constants inherited from SymbolNotFound

SymbolNotFound::EXIT_CODE

Constants inherited from Error

Error::EXIT_CODE

Instance Method Summary collapse

Methods inherited from Error

#exit_code

Constructor Details

#initialize(function_name) ⇒ FunctionNotFound

Returns a new instance of FunctionNotFound.



42
43
44
# File 'lib/ffidb/errors.rb', line 42

def initialize(function_name)
  super(:function, function_name)
end