mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
31 lines
627 B
Ruby
31 lines
627 B
Ruby
# Copyright IBM Corp. 2010, 2025
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module CloudCommand
|
|
module Errors
|
|
class Error < Vagrant::Errors::VagrantError
|
|
error_namespace("cloud_command.errors")
|
|
end
|
|
|
|
class ServerError < Error
|
|
error_key(:server_error)
|
|
end
|
|
|
|
class ServerUnreachable < Error
|
|
error_key(:server_unreachable)
|
|
end
|
|
|
|
class Unauthorized < Error
|
|
error_key(:unauthorized)
|
|
end
|
|
|
|
class Unexpected < Error
|
|
error_key(:unexpected_error)
|
|
end
|
|
|
|
class TwoFactorRequired < Error
|
|
end
|
|
end
|
|
end
|
|
end
|