Sha256: 2939ff6f783fcff612bc623664648557a97a3fc0d1c007a9e5cb7cb31525926e
Contents?: true
Size: 1.1 KB
Versions: 7
Compression:
Stored size: 1.1 KB
Contents
require "vagrant" module VagrantPlugins module Parallels module Errors class VagrantParallelsError < Vagrant::Errors::VagrantError error_namespace("vagrant_parallels.errors") end class DhcpLeasesNotAccessible < VagrantParallelsError error_key(:dhcp_leases_file_not_accessible) end class PrlCtlError < VagrantParallelsError error_key(:prlctl_error) end class ParallelsInstallIncomplete < VagrantParallelsError error_key(:parallels_install_incomplete) end class ParallelsInvalidVersion < VagrantParallelsError error_key(:parallels_invalid_version) end class ParallelsNotDetected < VagrantParallelsError error_key(:parallels_not_detected) end class ParallelsNoRoomForHighLevelNetwork < VagrantParallelsError error_key(:parallels_no_room_for_high_level_network) end class VMInaccessible < VagrantParallelsError error_key(:vm_inaccessible) end class MacOSXRequired < VagrantParallelsError error_key(:mac_os_x_required) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems