Exception: Aws::Templates::OptionValueDeleted

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

Overview

Deleted branch detected

While traversing Options layers for a value, deleted branch marker was discovered.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ OptionValueDeleted

Returns a new instance of OptionValueDeleted.



194
195
196
197
198
199
# File 'lib/aws/templates/exceptions.rb', line 194

def initialize(path)
  @path = path
  super(
    "Deleted value was detected while traversing path. The path left untraversed: #{path}"
  )
end

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path.



192
193
194
# File 'lib/aws/templates/exceptions.rb', line 192

def path
  @path
end