LambdaException constructor

const LambdaException(
  1. String message, {
  2. String? recoverySuggestion,
  3. String? underlyingException,
})

Exception thrown when an error from the AWS Lambda service is encountered.

Implementation

const LambdaException(
  String message, {
  String? recoverySuggestion,
  String? underlyingException,
}) : super(message,
          recoverySuggestion: recoverySuggestion,
          underlyingException: underlyingException);