Module aws_lambda_powertools.event_handler.graphql_appsync.exceptions
Classes
class InvalidBatchResponse (*args, **kwargs)
-
When a batch response something different from a List
Expand source code
class InvalidBatchResponse(Exception): """ When a batch response something different from a List """
Ancestors
- builtins.Exception
- builtins.BaseException
class ResolverNotFoundError (*args, **kwargs)
-
When a resolver is not found during a lookup.
Expand source code
class ResolverNotFoundError(Exception): """ When a resolver is not found during a lookup. """
Ancestors
- builtins.Exception
- builtins.BaseException