Exception: Vagrant::Node::VMActionException

Inherits:
StandardError
  • Object
show all
Defined in:
lib/vagrant-node/exceptions.rb

Instance Method Summary collapse

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

#providerObject



27
28
29
# File 'lib/vagrant-node/exceptions.rb', line 27

def provider
  @provider
end

#vmnameObject



23
24
25
# File 'lib/vagrant-node/exceptions.rb', line 23

def vmname
  @vmname
end