[UPDATE]
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-94f89814c4dfmaster
parent
716175b574
commit
9a838d1dcb
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue