sdk/communication/azure-communication-chat/src/main/java/com/azure/android/communication/chat/ChatThreadAsyncClient.java [407:423]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            .exceptionally(throwable -> {
                throw logger.logExceptionAsError(CommunicationErrorResponseExceptionConverter.convert(throwable));
            }).thenApply(response -> {
                List<ChatParticipant> participants = new ArrayList<>();
                if (response.getValue() != null) {
                    for (com.azure.android.communication.chat.implementation.models.ChatParticipant innerParticipant
                        : response.getValue()) {
                        participants.add(ChatParticipantConverter.convert(innerParticipant, this.logger));
                    }
                }
                return new PagedResponseBase<>(response.getRequest(),
                    response.getStatusCode(),
                    response.getHeaders(),
                    participants,
                    response.getContinuationToken(),
                    null);
            });
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sdk/communication/azure-communication-chat/src/main/java/com/azure/android/communication/chat/ChatThreadAsyncClient.java [438:454]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            .exceptionally(throwable -> {
                throw logger.logExceptionAsError(CommunicationErrorResponseExceptionConverter.convert(throwable));
            }).thenApply(response -> {
                List<ChatParticipant> participants = new ArrayList<>();
                if (response.getValue() != null) {
                    for (com.azure.android.communication.chat.implementation.models.ChatParticipant innerParticipant
                        : response.getValue()) {
                        participants.add(ChatParticipantConverter.convert(innerParticipant, this.logger));
                    }
                }
                return new PagedResponseBase<>(response.getRequest(),
                    response.getStatusCode(),
                    response.getHeaders(),
                    participants,
                    response.getContinuationToken(),
                    null);
            });
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



