Exception: Vagrant::Node::VMActionException
- Inherits:
-
StandardError
- Object
- StandardError
- Vagrant::Node::VMActionException
- Defined in:
- lib/vagrant-node/exceptions.rb
Instance Method Summary collapse
-
#initialize(vmname, provider, msg) ⇒ VMActionException
constructor
A new instance of VMActionException.
- #provider ⇒ Object
- #vmname ⇒ Object
Constructor Details
#initialize(vmname, provider, msg) ⇒ VMActionException
Returns a new instance of VMActionException.
18 19 20 21 22 |
# File 'lib/vagrant-node/exceptions.rb', line 18 def initialize(vmname,provider,msg) super(msg) @vmname = vmname @provider = provider end |
Instance Method Details
#provider ⇒ Object
27 28 29 |
# File 'lib/vagrant-node/exceptions.rb', line 27 def provider @provider end |
#vmname ⇒ Object
23 24 25 |
# File 'lib/vagrant-node/exceptions.rb', line 23 def vmname @vmname end |