In der Klasse ccm-cms-types-mparticle/src/com/arsdigita/cms/contenttypes/ui/mparticle/MultiPartArticleForm.java die FormProcessException in der Zeile 302 umgebaut, durch Weitergabe der Exception an die FormProcessException.

git-svn-id: https://svn.libreccm.org/ccm/trunk@3255 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2015-02-18 22:09:14 +00:00
parent baf9dfc5f7
commit 57f77d5944
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ public abstract class MultiPartArticleForm extends FormSection
article = (MultiPartArticle) m_itemModel.createItem();
} catch (ServletException e) {
s_log.error("Servlet Exception: " + e.getMessage(), e);
throw new FormProcessException(e.getMessage(), e);
throw new FormProcessException(e);
}