mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-06-13 10:40:03 -04:00
18 lines
427 B
Ruby
18 lines
427 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 PowerShellError < HyperVError
|
|
error_key(:powershell_error)
|
|
end
|
|
|
|
class PowerShellRequired < HyperVError
|
|
error_key(:powershell_required)
|
|
end
|
|
end
|
|
end
|
|
end
|