vagrant/plugins/pushes/heroku/errors.rb

22 lines
419 B
Ruby
Raw Normal View History

2014-11-13 22:07:54 +00:00
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