Sha256: af30a724c75b7a1951404462b9bf7b7d60646881d39ba342fda5a1c1c7d9dcb6
Contents?: true
Size: 431 Bytes
Versions: 64
Compression:
Stored size: 431 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 class MaqlExecutionError < RuntimeError attr_accessor :data def initialize(message, data = nil) super(message || 'Execution of maql failed') @data = data end end end
Version data entries
64 entries across 64 versions & 1 rubygems