class GirFFI::PropertyNotFoundError

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

Attributes

property_name[R]

Public Class Methods

new(property_name, klass) click to toggle source
Calls superclass method
# 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