Exception: Aws::Waiters::Errors::FailureStateError
- Inherits:
-
WaiterFailed
- Object
- StandardError
- WaiterFailed
- Aws::Waiters::Errors::FailureStateError
- Defined in:
- lib/aws-sdk-core/waiters/errors.rb
Constant Summary collapse
- MSG =
"stopped waiting, encountered a failure state"
Instance Attribute Summary collapse
-
#response ⇒ Seahorse::Client::Response
readonly
The response that matched the failure state.
Instance Method Summary collapse
-
#initialize(response) ⇒ FailureStateError
constructor
A new instance of FailureStateError.
Constructor Details
#initialize(response) ⇒ FailureStateError
Returns a new instance of FailureStateError.
13 14 15 16 |
# File 'lib/aws-sdk-core/waiters/errors.rb', line 13 def initialize(response) @response = response super(MSG) end |
Instance Attribute Details
#response ⇒ Seahorse::Client::Response (readonly)
Returns The response that matched the failure state.
20 21 22 |
# File 'lib/aws-sdk-core/waiters/errors.rb', line 20 def response @response end |