Sha256: 9411e9e6cbe9f9f2f05a34c19f6fb57726a671dc8093b41bdd2272ff031d28e5

Contents?: true

Size: 1 KB

Versions: 8

Compression:

Stored size: 1 KB

Contents

module VagrantPlugins
  module SyncedFolderSSHFS
    module Errors
      # A convenient superclass for all our errors.
      class SSHFSError < Vagrant::Errors::VagrantError
        error_namespace("vagrant.sshfs.errors")
      end

      class SSHFSNormalMountFailed < SSHFSError
        error_key(:normal_mount_failed)
      end

      class SSHFSSlaveMountFailed < SSHFSError
        error_key(:slave_mount_failed)
      end

      class SSHFSReverseMountFailed < SSHFSError
        error_key(:reverse_mount_failed)
      end

      class SSHFSUnmountFailed < SSHFSError
        error_key(:unmount_failed)
      end

      class SSHFSInstallFailed < SSHFSError
        error_key(:install_failed)
      end

      class SSHFSNotInstalledInGuest < SSHFSError
        error_key(:sshfs_not_in_guest)
      end

      class SSHFSExeNotAvailable < SSHFSError
        error_key(:exe_not_in_host)
      end

      class SSHFSGetAbsolutePathFailed < SSHFSError
        error_key(:get_absolute_path_failed)
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
vagrant-sshfs-1.3.7 lib/vagrant-sshfs/errors.rb
vagrant-sshfs-1.3.6 lib/vagrant-sshfs/errors.rb
vagrant-sshfs-1.3.5 lib/vagrant-sshfs/errors.rb
vagrant-sshfs-1.3.4 lib/vagrant-sshfs/errors.rb
vagrant-sshfs-1.3.3 lib/vagrant-sshfs/errors.rb
vagrant-sshfs-1.3.2 lib/vagrant-sshfs/errors.rb
vagrant-sshfs-1.3.1 lib/vagrant-sshfs/errors.rb
vagrant-sshfs-1.3.0 lib/vagrant-sshfs/errors.rb