OrgUserExistsError constructor
Implementation
OrgUserExistsError({
required String orgId,
required String userId,
bool log = kDebugMode,
}) : super(
message: 'Organization with id "$orgId" '
'already has a user with id "$userId"',
stackTrace: StackTrace.current,
);