lib/aws-sdk-omics/errors.rb in aws-sdk-omics-1.3.0 vs lib/aws-sdk-omics/errors.rb in aws-sdk-omics-1.4.0
- old
+ new
@@ -28,10 +28,11 @@
#
# ## Error Classes
# * {AccessDeniedException}
# * {ConflictException}
# * {InternalServerException}
+ # * {NotSupportedOperationException}
# * {RangeNotSatisfiableException}
# * {RequestTimeoutException}
# * {ResourceNotFoundException}
# * {ServiceQuotaExceededException}
# * {ThrottlingException}
@@ -87,9 +88,24 @@
@message || @data[:message]
end
def retryable?
true
+ end
+ end
+
+ class NotSupportedOperationException < ServiceError
+
+ # @param [Seahorse::Client::RequestContext] context
+ # @param [String] message
+ # @param [Aws::Omics::Types::NotSupportedOperationException] data
+ def initialize(context, message, data = Aws::EmptyStructure.new)
+ super(context, message, data)
+ end
+
+ # @return [String]
+ def message
+ @message || @data[:message]
end
end
class RangeNotSatisfiableException < ServiceError