lib/aws-sdk-dlm/errors.rb in aws-sdk-dlm-1.24.0 vs lib/aws-sdk-dlm/errors.rb in aws-sdk-dlm-1.25.0

- old
+ new

@@ -4,10 +4,36 @@ # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md # # WARNING ABOUT GENERATED CODE module Aws::DLM + + # When DLM returns an error response, the Ruby SDK constructs and raises an error. + # These errors all extend Aws::DLM::Errors::ServiceError < {Aws::Errors::ServiceError} + # + # You can rescue all DLM errors using ServiceError: + # + # begin + # # do stuff + # rescue Aws::DLM::Errors::ServiceError + # # rescues all DLM 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 + # * {InternalServerException} + # * {InvalidRequestException} + # * {LimitExceededException} + # * {ResourceNotFoundException} + # + # 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 InternalServerException < ServiceError @@ -26,11 +52,10 @@ # @return [String] def code @code || @data[:code] end - end class InvalidRequestException < ServiceError # @param [Seahorse::Client::RequestContext] context @@ -57,11 +82,10 @@ # @return [String] def mutually_exclusive_parameters @data[:mutually_exclusive_parameters] end - end class LimitExceededException < ServiceError # @param [Seahorse::Client::RequestContext] context @@ -83,11 +107,10 @@ # @return [String] def resource_type @data[:resource_type] end - end class ResourceNotFoundException < ServiceError # @param [Seahorse::Client::RequestContext] context @@ -114,10 +137,9 @@ # @return [String] def resource_ids @data[:resource_ids] end - end end end