Mikhail Zholobov f930fa94af Move "cant_read_mac_addresses" error to the global space
Now it is used not only by Windows, but by Darwin guests as well.
2015-10-09 14:57:41 +03:00

19 lines
453 B
Ruby

module VagrantPlugins
module GuestWindows
module Errors
# A convenient superclass for all our errors.
class WindowsError < Vagrant::Errors::VagrantError
error_namespace("vagrant_windows.errors")
end
class NetworkWinRMRequired < WindowsError
error_key(:network_winrm_required)
end
class RenameComputerFailed < WindowsError
error_key(:rename_computer_failed)
end
end
end
end