/* Subsequent reload: Set pointer to last retrieved News and go from there */
if (lastArticleId != null) {
/* Set Article Pointer to last retrieved News */
int status = client.stat(lastArticleId);
if (status == NO_SUCH_ARTICLE_ERROR)
downloadWithoutPointer = true; //This can happen if the last article id was not found, grab the latest news then
else if (status != STATUS_ARTICLE_POINTER_OK)
throwConnectionException(Messages.NewsGroupHandler_ERROR_RETRIEVE_NEWS, client);