In der Klasse com/arsdigita/cms/ui/role/RoleAdminAddForm.java die FormProcessException in der Zeile 119 umgebaut und einfach die Exception weitergeleitet.

git-svn-id: https://svn.libreccm.org/ccm/trunk@3167 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2015-02-13 23:50:25 +00:00
parent 716175b574
commit 9a838d1dcb
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class RoleAdminAddForm extends UserAddForm {
role = new Role(roleId);
} catch (DataObjectNotFoundException e) {
e.printStackTrace();
throw new FormProcessException(e.getMessage());
throw new FormProcessException(e);
}
Group group = role.getGroup();