Sha256: d06ecfaab62f6aee618142bbe936e61ba3a1c900c2ae7ec1c143909d4a82f3cd
Contents?: true
Size: 689 Bytes
Versions: 4
Compression:
Stored size: 689 Bytes
Contents
require "vagrant" module VagrantPlugins module Shell module Errors class VagrantShellError < Vagrant::Errors::VagrantError error_namespace("vagrant_shell.errors") end class ShellError < VagrantShellError error_key(:shell_error) end class TimeoutError < VagrantShellError error_key(:instance_ready_timeout) end class ComputeError < VagrantShellError error_key(:instance_ready_timeout) end class InstanceReadyTimeout < VagrantShellError error_key(:instance_ready_timeout) end class RsyncError < VagrantShellError error_key(:rsync_error) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems