Sha256: 393d41a70a2ba5878376e9af45d97c2c4bcef37c65ffd24be02fd6bbe02c24ed

Contents?: true

Size: 470 Bytes

Versions: 24

Compression:

Stored size: 470 Bytes

Contents

# Copyright (c) 2010-2019 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
  class LcmExecutionError < RuntimeError
    DEFAULT_MSG = 'Error 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

24 entries across 24 versions & 1 rubygems

Version Path
gooddata-2.1.10-java lib/gooddata/lcm/exceptions/lcm_execution_error.rb
gooddata-2.1.10 lib/gooddata/lcm/exceptions/lcm_execution_error.rb
gooddata-2.1.9-java lib/gooddata/lcm/exceptions/lcm_execution_error.rb
gooddata-2.1.9 lib/gooddata/lcm/exceptions/lcm_execution_error.rb