class GirFFI::PropertyNotFoundError
Exception class to be raised when a property is not found.
Attributes
Public Class Methods
Source
# File lib/gir_ffi/property_not_found_error.rb, line 8 def initialize(property_name, klass) @property_name = property_name @klass = klass super "Property '#{property_name}' not found in #{klass}" end
Calls superclass method