mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-06-11 09:40:07 -04:00
14 lines
337 B
Ruby
14 lines
337 B
Ruby
module VagrantPlugins
|
|
module HyperV
|
|
module Errors
|
|
# A convenient superclass for all our errors.
|
|
class HyperVError < Vagrant::Errors::VagrantError
|
|
error_namespace("vagrant_hyperv.errors")
|
|
end
|
|
|
|
class PowerShellRequired < HyperVError
|
|
error_key(:powershell_required)
|
|
end
|
|
end
|
|
end
|
|
end
|