Exception: GoodData::LcmExecutionError
- Defined in:
- lib/gooddata/lcm/exceptions/lcm_execution_error.rb
Constant Summary collapse
- DEFAULT_MSG =
'Error during lcm execution'
Instance Attribute Summary collapse
-
#summary_error ⇒ Object
readonly
Returns the value of attribute summary_error.
Instance Method Summary collapse
-
#initialize(summary_error, message = DEFAULT_MSG) ⇒ LcmExecutionError
constructor
A new instance of LcmExecutionError.
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, = DEFAULT_MSG) super() @summary_error = summary_error end |
Instance Attribute Details
#summary_error ⇒ Object (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 |