Exception: GirFFI::PropertyNotFoundError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/gir_ffi/property_not_found_error.rb

Overview

Exception class to be raised when a property is not found.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(property_name, klass) ⇒ PropertyNotFoundError

Returns a new instance of PropertyNotFoundError.



8
9
10
11
12
# 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

Instance Attribute Details

#property_nameObject (readonly)

Returns the value of attribute property_name.



6
7
8
# File 'lib/gir_ffi/property_not_found_error.rb', line 6

def property_name
  @property_name
end