Class: Puppet::SSL::StateMachine::Error Private
- Defined in:
- lib/puppet/ssl/state_machine.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
We cannot make progress due to an error.
Instance Attribute Summary collapse
- #error ⇒ Object readonly private
- #message ⇒ Object readonly private
Attributes inherited from SSLState
Instance Method Summary collapse
-
#initialize(machine, message, error) ⇒ Error
constructor
private
A new instance of Error.
- #next_state ⇒ Object private
Methods inherited from SSLState
Constructor Details
#initialize(machine, message, error) ⇒ Error
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Error.
344 345 346 347 348 |
# File 'lib/puppet/ssl/state_machine.rb', line 344 def initialize(machine, , error) super(machine, nil) @message = @error = error end |
Instance Attribute Details
#error ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
342 343 344 |
# File 'lib/puppet/ssl/state_machine.rb', line 342 def error @error end |
#message ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
342 343 344 |
# File 'lib/puppet/ssl/state_machine.rb', line 342 def @message end |
Instance Method Details
#next_state ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
350 351 352 353 |
# File 'lib/puppet/ssl/state_machine.rb', line 350 def next_state Puppet.log_exception(@error, @message) Wait.new(@machine) end |