class Aws::Templates::Exception::ParameterGetterIsNotDefined

Getter is not specified

Getter wasn't specified neither for the individual parameter nor for the mixing instance nor for its class.

Public Class Methods

new(target_parameter) click to toggle source
# File lib/aws/templates/exception/parameter_getter_is_not_defined.rb, line 12
def initialize(target_parameter)
  super(
    target_parameter,
    "Can't find getter for #{target_parameter.name} (#{target_parameter.description}): " \
      'a getter should be attached either to the parameter or the instance ' \
      'or the instance class'
  )
end