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

14 lines
269 B
Ruby

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