SessionUnavailableServiceException constructor

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

Exception thrown when valid credentials could not be obtained due to the an error from the requested service.

Implementation

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