Exception: Bosh::Template::UnknownProperty

Inherits:
StandardError
  • Object
show all
Defined in:
lib/bosh/template/unknown_property.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ UnknownProperty

Returns a new instance of UnknownProperty.



6
7
8
9
# File 'lib/bosh/template/unknown_property.rb', line 6

def initialize(name)
  @name = name
  super("Can't find property '#{name}'")
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



4
5
6
# File 'lib/bosh/template/unknown_property.rb', line 4

def name
  @name
end