Sha256: 59ff04594811288eddb91b66d929dcb70f5c74f97c017b162e13f4209b1f89ee
Contents?: true
Size: 469 Bytes
Versions: 77
Compression:
Stored size: 469 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2017 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. 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
77 entries across 77 versions & 1 rubygems