Exception: VagrantPlugins::AVF::Errors::UnsupportedHost

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

Instance Method Summary collapse

Constructor Details

#initialize(host_platform) ⇒ UnsupportedHost

Returns a new instance of UnsupportedHost.



23
24
25
26
27
# File 'lib/vagrant_provider_avf/errors.rb', line 23

def initialize(host_platform)
  super(
    "AVF provider requires macOS on Apple Silicon. Detected #{host_platform.description}."
  )
end