In der Klasse ccm-core/src/com/arsdigita/bebop/parameters/StringIsLettersOrDigitsValidationListener.java die FormProcessException in der Zeile 76 umgebaut. (gefangene Exception weitergeleitet)

git-svn-id: https://svn.libreccm.org/ccm/trunk@3227 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2015-02-18 19:38:15 +00:00
parent 7081e00e7c
commit cad7550b33
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public class StringIsLettersOrDigitsValidationListener extends GlobalizedParamet
try {
value = (String) obj;
} catch (ClassCastException cce) {
throw new FormProcessException (cce.getMessage());
throw new FormProcessException(cce);
}
for (int i = 0; i < value.length(); i++) {