AmplifyException constructor

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

Thrown from top level Amplify APIs from the amplify-flutter package. All other Amplify APIs throw subclasses of AmplifyException.

Implementation

const AmplifyException(
  this.message, {
  this.recoverySuggestion,
  this.underlyingException,
});