13 lines
356 B
Ruby
13 lines
356 B
Ruby
|
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
|