Exception: GoodData::AttributeElementNotFound

Inherits:
RuntimeError
  • Object
show all
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

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