class Aws::Templates::Exception::OptionValueDeleted

Deleted branch detected

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

Attributes

path[R]

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File lib/aws/templates/exception/option_value_deleted.rb, line 13
def initialize(path)
  @path = path
  super(
    "Deleted value was detected while traversing path. The path left untraversed: #{path}"
  )
end