Exception: GoodData::MaqlExecutionError
- Defined in:
- lib/gooddata/exceptions/maql_execution.rb
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
Instance Method Summary collapse
-
#initialize(message, data = nil) ⇒ MaqlExecutionError
constructor
A new instance of MaqlExecutionError.
Constructor Details
#initialize(message, data = nil) ⇒ MaqlExecutionError
Returns a new instance of MaqlExecutionError.
11 12 13 14 |
# File 'lib/gooddata/exceptions/maql_execution.rb', line 11 def initialize(, data = nil) super( || 'Execution of maql failed') @data = data end |
Instance Attribute Details
#data ⇒ Object
Returns the value of attribute data.
9 10 11 |
# File 'lib/gooddata/exceptions/maql_execution.rb', line 9 def data @data end |