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