2014-10-29 16:39:26 +00:00
|
|
|
module VagrantPlugins
|
2014-11-12 20:49:55 +00:00
|
|
|
module AtlasPush
|
2014-10-29 16:39:26 +00:00
|
|
|
module Errors
|
|
|
|
class Error < Vagrant::Errors::VagrantError
|
2014-11-12 20:49:55 +00:00
|
|
|
error_namespace("atlas_push.errors")
|
2014-10-29 16:39:26 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
class UploaderNotFound < Error
|
2014-12-02 06:20:27 +00:00
|
|
|
error_key(:uploader_not_found)
|
2014-10-29 16:39:26 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|