Sha256: bbc74eb09c70f99bb6f129d9627f95445d9c5cc66123226cf18a1d5ef863da5a

Contents?: true

Size: 425 Bytes

Versions: 6

Compression:

Stored size: 425 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
  class MaqlExecutionError < RuntimeError
    attr_accessor :data

    def initialize(message, data)
      super(message || 'Execution of maql failed')
      @data = data
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gooddata-0.6.49 lib/gooddata/exceptions/maql_execution.rb
gooddata-0.6.48 lib/gooddata/exceptions/maql_execution.rb
gooddata-0.6.47 lib/gooddata/exceptions/maql_execution.rb
gooddata-0.6.46 lib/gooddata/exceptions/maql_execution.rb
gooddata-0.6.45 lib/gooddata/exceptions/maql_execution.rb
gooddata-0.6.44 lib/gooddata/exceptions/maql_execution.rb