vagrant/plugins/pushes/local-exec/errors.rb

17 lines
340 B
Ruby
Raw Normal View History

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
2014-11-14 15:51:35 -05:00
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