vagrant/plugins/pushes/harmony/errors.rb

14 lines
269 B
Ruby
Raw Normal View History

module VagrantPlugins
module HarmonyPush
module Errors
class Error < Vagrant::Errors::VagrantError
error_namespace("harmony_push.errors")
end
class UploaderNotFound < Error
error_key(:uploader_error)
end
end
end
end