Exception: FFIDB::FunctionNotFound
- Inherits:
-
SymbolNotFound
- Object
- StandardError
- Error
- SymbolNotFound
- FFIDB::FunctionNotFound
- Defined in:
- lib/ffidb/errors.rb
Overview
An error indicating that an FFI function was not found.
Constant Summary
Constants inherited from SymbolNotFound
Constants inherited from Error
Instance Method Summary collapse
-
#initialize(function_name) ⇒ FunctionNotFound
constructor
A new instance of FunctionNotFound.
Methods inherited from Error
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 |