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

14 lines
265 B
Ruby

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