File: errors.rb

package info (click to toggle)
vagrant 2.3.4%2Bdfsg-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 17,492 kB
  • sloc: ruby: 110,867; sh: 465; makefile: 84; lisp: 1
file content (18 lines) | stat: -rw-r--r-- 409 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
    end
  end
end