# frozen_string_literal: true # WARNING ABOUT GENERATED CODE # # This file is generated. See the contributing guide for more information: # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md # # WARNING ABOUT GENERATED CODE module Aws::AppConfig # When AppConfig returns an error response, the Ruby SDK constructs and raises an error. # These errors all extend Aws::AppConfig::Errors::ServiceError < {Aws::Errors::ServiceError} # # You can rescue all AppConfig errors using ServiceError: # # begin # # do stuff # rescue Aws::AppConfig::Errors::ServiceError # # rescues all AppConfig API errors # end # # # ## Request Context # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns # information about the request that generated the error. # See {Seahorse::Client::RequestContext} for more information. # # ## Error Classes # * {BadRequestException} # * {ConflictException} # * {InternalServerException} # * {PayloadTooLargeException} # * {ResourceNotFoundException} # * {ServiceQuotaExceededException} # # Additionally, error classes are dynamically generated for service errors based on the error code # if they are not defined above. module Errors extend Aws::Errors::DynamicErrors class BadRequestException < ServiceError # @param [Seahorse::Client::RequestContext] context # @param [String] message # @param [Aws::AppConfig::Types::BadRequestException] data def initialize(context, message, data = Aws::EmptyStructure.new) super(context, message, data) end # @return [String] def message @message || @data[:message] end # @return [String] def reason @data[:reason] end # @return [String] def details @data[:details] end end class ConflictException < ServiceError # @param [Seahorse::Client::RequestContext] context # @param [String] message # @param [Aws::AppConfig::Types::ConflictException] data def initialize(context, message, data = Aws::EmptyStructure.new) super(context, message, data) end # @return [String] def message @message || @data[:message] end end class InternalServerException < ServiceError # @param [Seahorse::Client::RequestContext] context # @param [String] message # @param [Aws::AppConfig::Types::InternalServerException] data def initialize(context, message, data = Aws::EmptyStructure.new) super(context, message, data) end # @return [String] def message @message || @data[:message] end end class PayloadTooLargeException < ServiceError # @param [Seahorse::Client::RequestContext] context # @param [String] message # @param [Aws::AppConfig::Types::PayloadTooLargeException] data def initialize(context, message, data = Aws::EmptyStructure.new) super(context, message, data) end # @return [String] def message @message || @data[:message] end # @return [String] def measure @data[:measure] end # @return [String] def limit @data[:limit] end # @return [String] def size @data[:size] end end class ResourceNotFoundException < ServiceError # @param [Seahorse::Client::RequestContext] context # @param [String] message # @param [Aws::AppConfig::Types::ResourceNotFoundException] data def initialize(context, message, data = Aws::EmptyStructure.new) super(context, message, data) end # @return [String] def message @message || @data[:message] end # @return [String] def resource_name @data[:resource_name] end end class ServiceQuotaExceededException < ServiceError # @param [Seahorse::Client::RequestContext] context # @param [String] message # @param [Aws::AppConfig::Types::ServiceQuotaExceededException] data def initialize(context, message, data = Aws::EmptyStructure.new) super(context, message, data) end # @return [String] def message @message || @data[:message] end end end end