InvalidUserPoolConfigurationException constructor

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

Exception thrown when a user pool configuration provided to the requested service is invalid.

Implementation

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