Exception: GoodData::LcmExecutionWarning

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

Constant Summary collapse

DEFAULT_MSG =
'Existing errors during lcm execution'

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(summary_error, message = DEFAULT_MSG) ⇒ LcmExecutionWarning

Returns a new instance of LcmExecutionWarning.



10
11
12
13
# File 'lib/gooddata/lcm/exceptions/lcm_execution_warning.rb', line 10

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.



8
9
10
# File 'lib/gooddata/lcm/exceptions/lcm_execution_warning.rb', line 8

def summary_error
  @summary_error
end