Exception: Aws::Templates::OptionValueDeleted
- Inherits:
-
OptionError
- Object
- ArgumentError
- OptionError
- Aws::Templates::OptionValueDeleted
- 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
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize(path) ⇒ OptionValueDeleted
constructor
A new instance of OptionValueDeleted.
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
#path ⇒ Object (readonly)
Returns the value of attribute path.
192 193 194 |
# File 'lib/aws/templates/exceptions.rb', line 192 def path @path end |