Exception: GoodData::AttributeElementNotFound
- Defined in:
- lib/gooddata/exceptions/attr_element_not_found.rb
Overview
Project Not Found
Constant Summary collapse
- DEFAULT_MSG =
'Attribute element "%s" was not found'
Instance Method Summary collapse
-
#initialize(value, _msg = DEFAULT_MSG) ⇒ AttributeElementNotFound
constructor
A new instance of AttributeElementNotFound.
Constructor Details
#initialize(value, _msg = DEFAULT_MSG) ⇒ AttributeElementNotFound
Returns a new instance of AttributeElementNotFound.
12 13 14 |
# File 'lib/gooddata/exceptions/attr_element_not_found.rb', line 12 def initialize(value, _msg = DEFAULT_MSG) super(sprintf(DEFAULT_MSG, value)) end |