lib/aws-sdk-mediaconnect/errors.rb in aws-sdk-mediaconnect-1.16.0 vs lib/aws-sdk-mediaconnect/errors.rb in aws-sdk-mediaconnect-1.17.0

- old
+ new

@@ -4,10 +4,41 @@ # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md # # WARNING ABOUT GENERATED CODE module Aws::MediaConnect + + # When MediaConnect returns an error response, the Ruby SDK constructs and raises an error. + # These errors all extend Aws::MediaConnect::Errors::ServiceError < {Aws::Errors::ServiceError} + # + # You can rescue all MediaConnect errors using ServiceError: + # + # begin + # # do stuff + # rescue Aws::MediaConnect::Errors::ServiceError + # # rescues all MediaConnect 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 + # * {AddFlowOutputs420Exception} + # * {BadRequestException} + # * {CreateFlow420Exception} + # * {ForbiddenException} + # * {GrantFlowEntitlements420Exception} + # * {InternalServerErrorException} + # * {NotFoundException} + # * {ServiceUnavailableException} + # * {TooManyRequestsException} + # + # 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 AddFlowOutputs420Exception < ServiceError @@ -21,11 +52,10 @@ # @return [String] def message @message || @data[:message] end - end class BadRequestException < ServiceError # @param [Seahorse::Client::RequestContext] context @@ -37,11 +67,10 @@ # @return [String] def message @message || @data[:message] end - end class CreateFlow420Exception < ServiceError # @param [Seahorse::Client::RequestContext] context @@ -53,11 +82,10 @@ # @return [String] def message @message || @data[:message] end - end class ForbiddenException < ServiceError # @param [Seahorse::Client::RequestContext] context @@ -69,11 +97,10 @@ # @return [String] def message @message || @data[:message] end - end class GrantFlowEntitlements420Exception < ServiceError # @param [Seahorse::Client::RequestContext] context @@ -85,11 +112,10 @@ # @return [String] def message @message || @data[:message] end - end class InternalServerErrorException < ServiceError # @param [Seahorse::Client::RequestContext] context @@ -101,11 +127,10 @@ # @return [String] def message @message || @data[:message] end - end class NotFoundException < ServiceError # @param [Seahorse::Client::RequestContext] context @@ -117,11 +142,10 @@ # @return [String] def message @message || @data[:message] end - end class ServiceUnavailableException < ServiceError # @param [Seahorse::Client::RequestContext] context @@ -133,11 +157,10 @@ # @return [String] def message @message || @data[:message] end - end class TooManyRequestsException < ServiceError # @param [Seahorse::Client::RequestContext] context @@ -149,10 +172,9 @@ # @return [String] def message @message || @data[:message] end - end end end