Sha256: 27ea2b9197d8372939b1430569a1d1c75db399db80a1f3185b91e59a3100b424

Contents?: true

Size: 350 Bytes

Versions: 4

Compression:

Stored size: 350 Bytes

Contents

# frozen_string_literal: true
# (C) 2019-2022 GoodData Corporation

module GoodData
  class LcmExecutionWarning < RuntimeError
    DEFAULT_MSG = 'Existing errors during lcm execution'

    attr_reader :summary_error

    def initialize(summary_error, message = DEFAULT_MSG)
      super(message)
      @summary_error = summary_error
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gooddata-2.3.1-java lib/gooddata/lcm/exceptions/lcm_execution_warning.rb
gooddata-2.3.1 lib/gooddata/lcm/exceptions/lcm_execution_warning.rb
gooddata-2.3.0-java lib/gooddata/lcm/exceptions/lcm_execution_warning.rb
gooddata-2.3.0 lib/gooddata/lcm/exceptions/lcm_execution_warning.rb