UserNotFoundException constructor

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

Exception thrown when the requested operation can't be performed because the user can't be found by the requested service.

Implementation

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