Exception: Bosh::Common::UnknownProperty
- Inherits:
-
StandardError
- Object
- StandardError
- Bosh::Common::UnknownProperty
- Defined in:
- lib/common/properties/errors.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name) ⇒ UnknownProperty
constructor
A new instance of UnknownProperty.
Constructor Details
#initialize(name) ⇒ UnknownProperty
Returns a new instance of UnknownProperty.
10 11 12 13 |
# File 'lib/common/properties/errors.rb', line 10 def initialize(name) @name = name super("Can't find property `#{name}'") end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
8 9 10 |
# File 'lib/common/properties/errors.rb', line 8 def name @name end |