mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-22 01:11:43 -05:00
13 lines
269 B
Ruby
13 lines
269 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_not_found)
|
|
end
|
|
end
|
|
end
|
|
end
|