Exception: Aws::Templates::NestedParameterException

Inherits:
ParameterException show all
Defined in:
lib/aws/templates/exceptions.rb

Overview

If something happens during parameter calculation

Instance Attribute Summary

Attributes inherited from ParameterException

#parameter

Instance Method Summary collapse

Methods inherited from ParameterException

#message

Constructor Details

#initialize(target_parameter) ⇒ NestedParameterException

Returns a new instance of NestedParameterException.



112
113
114
115
116
117
118
# File 'lib/aws/templates/exceptions.rb', line 112

def initialize(target_parameter)
  super(
    target_parameter,
    'Exception was thrown by nested parameter while calculating ' \
      "#{target_parameter.name} (#{target_parameter.description})"
  )
end