Sha256: fdcef1fdcc690ad20e69dff64d3c8a73671825fb5ca6152e2e91091488c78cbc

Contents?: true

Size: 267 Bytes

Versions: 6

Compression:

Stored size: 267 Bytes

Contents

# encoding: UTF-8

module GoodData
  # Project Not Found
  class AttributeElementNotFound < RuntimeError
    DEFAULT_MSG = 'Attribute element "%s" was not found'

    def initialize(value, msg = DEFAULT_MSG)
      super(sprintf(DEFAULT_MSG, value))
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gooddata-0.6.10 lib/gooddata/exceptions/attr_element_not_found.rb
gooddata-0.6.9 lib/gooddata/exceptions/attr_element_not_found.rb
gooddata-0.6.8 lib/gooddata/exceptions/attr_element_not_found.rb
gooddata-0.6.7 lib/gooddata/exceptions/attr_element_not_found.rb
gooddata-0.6.6 lib/gooddata/exceptions/attr_element_not_found.rb
gooddata-0.6.5 lib/gooddata/exceptions/attr_element_not_found.rb