Sha256: 098e1dc8a290c087369e3775159d039538f21f9b616448e763cc73dcd6e89a84
Contents?: true
Size: 469 Bytes
Versions: 29
Compression:
Stored size: 469 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2015 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
29 entries across 29 versions & 2 rubygems