Exception: Aws::Templates::Exception::OptionValueDeleted

Inherits:
OptionError
  • Object
show all
Defined in:
lib/aws/templates/exception/option_value_deleted.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.



13
14
15
16
17
18
# 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

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path.



11
12
13
# File 'lib/aws/templates/exception/option_value_deleted.rb', line 11

def path
  @path
end