You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Module: Aws::Amplify::Errors

Defined in:
(unknown)

Overview

When AWS Amplify returns an error response, the Ruby SDK constructs and raises an error. These errors have the following ancestors:

You can rescue all Amplify errors using ServiceError:

# rescue all errors from AWS Amplify
begin
  # do stuff
rescue Aws::Amplify::Errors::ServiceError
  # ...
end

Request Context

ServiceError objects have a #context method that returns information about the request that generated the error, including:

  • #params - The request params
  • #operation_name - Name of the API operation invoked
  • #http_request
  • #http_response
  • etc ...

See Seahorse::Client::RequestContext for more information.

Error Classes

You can rescue a specific error using the error code:

begin
  # do stuff
rescue Aws::Amplify::Errors::BadRequestException
  # ...
end

Some of the common errors are listed below:

Defined Under Namespace

Classes: BadRequestException, DependentServiceFailureException, InternalFailureException, LimitExceededException, NotFoundException, ResourceNotFoundException, ServiceError, UnauthorizedException