2014-03-14 18:23:07 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestWindows
|
|
|
|
module Errors
|
|
|
|
# A convenient superclass for all our errors.
|
|
|
|
class WindowsError < Vagrant::Errors::VagrantError
|
|
|
|
error_namespace("vagrant_windows.errors")
|
|
|
|
end
|
|
|
|
|
2014-05-07 02:00:58 +00:00
|
|
|
class NetworkWinRMRequired < WindowsError
|
|
|
|
error_key(:network_winrm_required)
|
|
|
|
end
|
2014-06-10 05:46:03 +00:00
|
|
|
|
|
|
|
class RenameComputerFailed < WindowsError
|
|
|
|
error_key(:rename_computer_failed)
|
|
|
|
end
|
2014-03-14 18:23:07 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|