aws-sdk-finspacedata 1.5.0 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -28,7 +28,9 @@ module Aws::FinSpaceData
28
28
  #
29
29
  # ## Error Classes
30
30
  # * {AccessDeniedException}
31
+ # * {ConflictException}
31
32
  # * {InternalServerException}
33
+ # * {LimitExceededException}
32
34
  # * {ResourceNotFoundException}
33
35
  # * {ThrottlingException}
34
36
  # * {ValidationException}
@@ -54,6 +56,21 @@ module Aws::FinSpaceData
54
56
  end
55
57
  end
56
58
 
59
+ class ConflictException < ServiceError
60
+
61
+ # @param [Seahorse::Client::RequestContext] context
62
+ # @param [String] message
63
+ # @param [Aws::FinSpaceData::Types::ConflictException] data
64
+ def initialize(context, message, data = Aws::EmptyStructure.new)
65
+ super(context, message, data)
66
+ end
67
+
68
+ # @return [String]
69
+ def message
70
+ @message || @data[:message]
71
+ end
72
+ end
73
+
57
74
  class InternalServerException < ServiceError
58
75
 
59
76
  # @param [Seahorse::Client::RequestContext] context
@@ -69,6 +86,21 @@ module Aws::FinSpaceData
69
86
  end
70
87
  end
71
88
 
89
+ class LimitExceededException < ServiceError
90
+
91
+ # @param [Seahorse::Client::RequestContext] context
92
+ # @param [String] message
93
+ # @param [Aws::FinSpaceData::Types::LimitExceededException] data
94
+ def initialize(context, message, data = Aws::EmptyStructure.new)
95
+ super(context, message, data)
96
+ end
97
+
98
+ # @return [String]
99
+ def message
100
+ @message || @data[:message]
101
+ end
102
+ end
103
+
72
104
  class ResourceNotFoundException < ServiceError
73
105
 
74
106
  # @param [Seahorse::Client::RequestContext] context