[UPDATE]
In der Klasse ccm-docmgr/src/com/arsdigita/cms/docmgr/ui/FolderContentsTableForm.java die FormProcessException in den Zeilen 190 und 194 umgebaut und den key ui.error.unexpected den Properties hinzugefügt. git-svn-id: https://svn.libreccm.org/ccm/trunk@3197 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
75dbaba600
commit
918229369c
|
|
@ -93,3 +93,4 @@ ui.intended_audience_cannot_be_null=Intended Audience cannot be null
|
||||||
ui.error.sending_document=An error occurred while trying to send document
|
ui.error.sending_document=An error occurred while trying to send document
|
||||||
ui.invalid_term=Invalid term
|
ui.invalid_term=Invalid term
|
||||||
ui.folder.not_empty=Folders must be empty before they can be deleted
|
ui.folder.not_empty=Folders must be empty before they can be deleted
|
||||||
|
ui.error.unexpected=An unexpected error occurred
|
||||||
|
|
|
||||||
|
|
@ -93,3 +93,4 @@ ui.intended_audience_cannot_be_null=Intended Audience cannot be null
|
||||||
ui.error.sending_document=An error occurred while trying to send document
|
ui.error.sending_document=An error occurred while trying to send document
|
||||||
ui.invalid_term=Invalid term
|
ui.invalid_term=Invalid term
|
||||||
ui.folder.not_empty=Folders must be empty before they can be deleted
|
ui.folder.not_empty=Folders must be empty before they can be deleted
|
||||||
|
ui.error.unexpected=An unexpected error occurred
|
||||||
|
|
|
||||||
|
|
@ -187,10 +187,12 @@ class FolderContentsTableForm extends Form
|
||||||
}
|
}
|
||||||
} catch (PersistenceException exc) {
|
} catch (PersistenceException exc) {
|
||||||
exc.printStackTrace();
|
exc.printStackTrace();
|
||||||
throw new FormProcessException("An unexpected error occurred");
|
throw new FormProcessException(GlobalizationUtil.globalize(
|
||||||
|
"ui.error.unexpected"));
|
||||||
} catch (DataObjectNotFoundException exc) {
|
} catch (DataObjectNotFoundException exc) {
|
||||||
exc.printStackTrace();
|
exc.printStackTrace();
|
||||||
throw new FormProcessException("An unexpected error occurred");
|
throw new FormProcessException(GlobalizationUtil.globalize(
|
||||||
|
"ui.error.unexpected"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue