vagrant/plugins/synced_folders/smb/errors.rb

27 lines
611 B
Ruby
Raw Normal View History

2014-02-26 23:54:53 +00:00
module VagrantPlugins
module SyncedFolderSMB
module Errors
# A convenient superclass for all our errors.
class SMBError < Vagrant::Errors::VagrantError
error_namespace("vagrant_sf_smb.errors")
end
class DefineShareFailed < SMBError
error_key(:define_share_failed)
end
class NoHostIPAddr < SMBError
error_key(:no_routable_host_addr)
end
class PowershellError < SMBError
error_key(:powershell_error)
end
class WindowsHostRequired < SMBError
error_key(:windows_host_required)
end
2014-02-26 23:54:53 +00:00
end
end
end