Exception: Ducktape::AttributeNotDefinedError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/ducktape/bindable.rb

Instance Method Summary collapse

Constructor Details

#initialize(klass, name) ⇒ AttributeNotDefinedError

Returns a new instance of AttributeNotDefinedError.



4
5
6
# File 'lib/ducktape/bindable.rb', line 4

def initialize(klass, name)
  super("attribute #{name.to_s.inspect} not defined for class #{klass}")
end