2014-12-08 11:35:14 -08:00

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