class Aws::Templates::Exception::OptionScalarOnTheWay

Scalar is met while traversing Options path

Path is not empty yet but we can't traverse deeper because the current value is a scalar

Attributes

path[R]
value[R]

Public Class Methods

new(value, path) click to toggle source
Calls superclass method
# File lib/aws/templates/exception/option_scalar_on_the_way.rb, line 14
def initialize(value, path)
  @value = value
  @path = path

  super(
    "Value #{value} is not a recursive data structure and we have still #{path} keys " \
      'to look-up'
  )
end