Exception: ElasticBeans::Aws::CloudformationStack::MissingStackError

Inherits:
Error
  • Object
show all
Defined in:
lib/elastic_beans/aws/cloudformation_stack.rb

Instance Method Summary collapse

Constructor Details

#initialize(stack_name:) ⇒ MissingStackError

Returns a new instance of MissingStackError.



53
54
55
# File 'lib/elastic_beans/aws/cloudformation_stack.rb', line 53

def initialize(stack_name:)
  @stack_name = stack_name
end

Instance Method Details

#messageObject



57
58
59
60
# File 'lib/elastic_beans/aws/cloudformation_stack.rb', line 57

def message
  "CloudFormation stack `#{@stack_name}' is in progress or does not exist." \
    " Make sure the stack exists, is stable, and matches the outputs required."
end