Sha256: 0f5f7873e7c9b6d6f2561aa2347516beec1fdd0f9db61418a88158a41b9c3f54

Contents?: true

Size: 708 Bytes

Versions: 2

Compression:

Stored size: 708 Bytes

Contents

require 'vagrant/errors'

module VagrantWindows
  module Errors
    
    class VagrantWindowsError < ::Vagrant::Errors::VagrantError
      error_namespace("vagrant_windows.errors")
    end  
    
    class WinRMNotReady < VagrantWindowsError
      error_key(:winrm_not_ready)
    end

    class WinRMInvalidShell < VagrantWindowsError
      error_key(:winrm_invalid_shell)
    end
    
    class WinRMExecutionError < VagrantWindowsError
      error_key(:winrm_execution_error)
    end
    
    class WinRMAuthorizationError < VagrantWindowsError
      error_key(:winrm_auth_error)
    end

    class WinRMFileTransferError < VagrantWindowsError
      error_key(:winrm_file_transfer_error)
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-windows-1.7.0.pre.2 lib/vagrant-windows/errors.rb
vagrant-windows-1.7.0.pre.1 lib/vagrant-windows/errors.rb