In der Klasse ccm-core/src/com/arsdigita/formbuilder/ui/editors/ProcessListenerForm.java die FormProcessException in der Zeile 187 umgebaut.

git-svn-id: https://svn.libreccm.org/ccm/trunk@3243 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2015-02-18 21:11:05 +00:00
parent d7833d3e91
commit a7a9d597d7
1 changed files with 2 additions and 1 deletions

View File

@ -184,7 +184,8 @@ public abstract class ProcessListenerForm extends PropertiesForm {
try {
widget = getProcessListener(action);
} catch (DataObjectNotFoundException ex) {
throw new FormProcessException("cannot find persistent process listener " + action, ex);
throw new FormProcessException(GlobalizationUtil.globalize(
"formbuilder.ui.editors.cannot_find_persistent_process_listener", new Object[]{action}));
}
}