Sha256: 05b64d7e7bb1233bc5a66ace844deb4ce40c31b65e9ab7a36dd5161e1e49395f
Contents?: true
Size: 758 Bytes
Versions: 77
Compression:
Stored size: 758 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 ObjectsMigrationError < RuntimeError DEFAULT_MSG = 'Object migration failed.' def initialize(msg = DEFAULT_MSG) super(msg) end end class ObjectsExportError < ObjectsMigrationError DEFAULT_MSG = 'Exporting objects failed.' def initialize(msg = DEFAULT_MSG) super(msg) end end class ObjectsImportError < ObjectsMigrationError DEFAULT_MSG = 'Importing objects failed.' def initialize(msg = DEFAULT_MSG) super(msg) end end end
Version data entries
77 entries across 77 versions & 1 rubygems