mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 08:55:35 -05:00
14 lines
271 B
Ruby
14 lines
271 B
Ruby
|
|
module VagrantPlugins
|
||
|
|
module LocalExecPush
|
||
|
|
module Errors
|
||
|
|
class Error < Vagrant::Errors::VagrantError
|
||
|
|
error_namespace("local_exec_push.errors")
|
||
|
|
end
|
||
|
|
|
||
|
|
class CommandFailed < Error
|
||
|
|
error_key(:command_failed)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|