class FFIDB::SymbolNotFound

An error indicating that an FFI symbol was not found.

Constants

EXIT_CODE

Public Class Methods

new(symbol_kind, symbol_name) click to toggle source
Calls superclass method
# File lib/ffidb/errors.rb, line 34
def initialize(symbol_kind, symbol_name)
  super("#{symbol_kind.to_s.capitalize} not found: #{symbol_name}")
end