Class: Puppet::SSL::StateMachine::LockFailure 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 failed to acquire the lock, so exit
Instance Attribute Summary collapse
- #message ⇒ Object readonly private
Attributes inherited from SSLState
Instance Method Summary collapse
-
#initialize(machine, message) ⇒ LockFailure
constructor
private
A new instance of LockFailure.
Methods inherited from SSLState
Constructor Details
#initialize(machine, message) ⇒ LockFailure
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 LockFailure.
466 467 468 469 |
# File 'lib/puppet/ssl/state_machine.rb', line 466 def initialize(machine, ) super(machine, nil) @message = end |
Instance Attribute Details
#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.
464 465 466 |
# File 'lib/puppet/ssl/state_machine.rb', line 464 def @message end |