lib/aws-sdk-cloudwatch/errors.rb in aws-sdk-cloudwatch-1.32.0 vs lib/aws-sdk-cloudwatch/errors.rb in aws-sdk-cloudwatch-1.33.0

- old
+ new

@@ -8,10 +8,21 @@ module Aws::CloudWatch module Errors extend Aws::Errors::DynamicErrors + class ConcurrentModificationException < ServiceError + + # @param [Seahorse::Client::RequestContext] context + # @param [String] message + # @param [Aws::CloudWatch::Types::ConcurrentModificationException] data + def initialize(context, message, data = Aws::EmptyStructure.new) + super(context, message, data) + end + + end + class DashboardInvalidInputError < ServiceError # @param [Seahorse::Client::RequestContext] context # @param [String] message # @param [Aws::CloudWatch::Types::DashboardInvalidInputError] data @@ -121,9 +132,20 @@ end # @return [String] def message @message || @data[:message] + end + + end + + class LimitExceededException < ServiceError + + # @param [Seahorse::Client::RequestContext] context + # @param [String] message + # @param [Aws::CloudWatch::Types::LimitExceededException] data + def initialize(context, message, data = Aws::EmptyStructure.new) + super(context, message, data) end end class LimitExceededFault < ServiceError