Exception: GoodData::LcmExecutionError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/gooddata/lcm/exceptions/lcm_execution_error.rb

Constant Summary collapse

DEFAULT_MSG =
'Error during lcm execution'

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(summary_error, message = DEFAULT_MSG) ⇒ LcmExecutionError

Returns a new instance of LcmExecutionError.



11
12
13
14
# File 'lib/gooddata/lcm/exceptions/lcm_execution_error.rb', line 11

def initialize(summary_error, message = DEFAULT_MSG)
  super(message)
  @summary_error = summary_error
end

Instance Attribute Details

#summary_errorObject (readonly)

Returns the value of attribute summary_error.



9
10
11
# File 'lib/gooddata/lcm/exceptions/lcm_execution_error.rb', line 9

def summary_error
  @summary_error
end