Exception: VagrantPlugins::AVF::Errors::MachineRequirementsChanged

Inherits:
StandardError
  • Object
show all
Defined in:
lib/vagrant_provider_avf/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(fields) ⇒ MachineRequirementsChanged

Returns a new instance of MachineRequirementsChanged.



31
32
33
34
35
36
# File 'lib/vagrant_provider_avf/errors.rb', line 31

def initialize(fields)
  super(
    "machine requirements changed for the existing machine (#{fields.join(', ')}). " \
    "Destroy and recreate the machine to apply those changes."
  )
end