Sha256: 0a311d737c1771d45aaa32a2358c5585c80400f57c9e4a2026ca804f19336e34
Contents?: true
Size: 425 Bytes
Versions: 13
Compression:
Stored size: 425 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) super(message || 'Execution of maql failed') @data = data end end end
Version data entries
13 entries across 13 versions & 1 rubygems