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



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



