}
}
catch (SQLException se) {
// If there's a problem inserting the article, it's impossible to store
// related content, so just throw exception.
ArticlePersistenceException ape =
new ArticlePersistenceException(se.getMessage(),
"Error trying to store article");
exceptionArrayList.add(ape);
throw new ContentPersistenceExceptions(exceptionArrayList);
}
article.setArticleId(articleId);