15 lines
382 B
Ruby
15 lines
382 B
Ruby
|
require 'vagrant/errors'
|
||
|
|
||
|
module VagrantPlugins
|
||
|
module DockerProvider
|
||
|
module Errors
|
||
|
class ImageNotConfiguredError < Vagrant::Errors::VagrantError
|
||
|
error_key(:docker_provider_image_not_configured)
|
||
|
end
|
||
|
class NfsWithoutPrivilegedError < Vagrant::Errors::VagrantError
|
||
|
error_key(:docker_provider_nfs_without_privileged)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|