2014-04-12 22:40:27 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module CommandRDP
|
|
|
|
module Errors
|
|
|
|
# A convenient superclass for all our errors.
|
|
|
|
class RDPError < Vagrant::Errors::VagrantError
|
|
|
|
error_namespace("vagrant_rdp.errors")
|
|
|
|
end
|
|
|
|
|
2014-04-12 22:51:07 +00:00
|
|
|
class GuestUnsupported < RDPError
|
|
|
|
error_key(:guest_unsupported)
|
|
|
|
end
|
|
|
|
|
2014-04-12 22:40:27 +00:00
|
|
|
class HostUnsupported < RDPError
|
|
|
|
error_key(:host_unsupported)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|