12 lines
224 B
Ruby
12 lines
224 B
Ruby
|
module VagrantPlugins
|
||
|
module Docker
|
||
|
module Errors
|
||
|
class DockerInstallFailed < ::Vagrant::Errors::VagrantError
|
||
|
end
|
||
|
|
||
|
class DockerNotRunning < ::Vagrant::Errors::VagrantError
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|