Sha256: da24bbf9528bbf3862361285c71972001da15d7874e5c0ff716f13f0cad94a90

Contents?: true

Size: 557 Bytes

Versions: 3

Compression:

Stored size: 557 Bytes

Contents

# encoding: UTF-8

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

3 entries across 3 versions & 1 rubygems

Version Path
gooddata-0.6.24 lib/gooddata/exceptions/object_migration.rb
gooddata-0.6.23 lib/gooddata/exceptions/object_migration.rb
gooddata-0.6.22 lib/gooddata/exceptions/object_migration.rb