vagrant/plugins/commands/rdp/errors.rb

22 lines
478 B
Ruby
Raw Normal View History

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
2014-04-12 18:40:27 -04: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
class HostUnsupported < RDPError
error_key(:host_unsupported)
end
class RDPUndetected < RDPError
error_key(:rdp_undetected)
end
2014-04-12 18:40:27 -04:00
end
end
end