mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
24 lines
488 B
Ruby
24 lines
488 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module HerokuPush
|
|
module Errors
|
|
class Error < Vagrant::Errors::VagrantError
|
|
error_namespace("heroku_push.errors")
|
|
end
|
|
|
|
class CommandFailed < Error
|
|
error_key(:command_failed)
|
|
end
|
|
|
|
class GitNotFound < Error
|
|
error_key(:git_not_found)
|
|
end
|
|
|
|
class NotAGitRepo < Error
|
|
error_key(:not_a_git_repo)
|
|
end
|
|
end
|
|
end
|
|
end
|