In der Klasse ccm-core/src/com/arsdigita/bebop/parameters/StringLengthValidationListener.java die FormProcessException in der Zeile 74 umgebaut, indem die Exception an die FormProcessException übergeben wird.

git-svn-id: https://svn.libreccm.org/ccm/trunk@3239 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2015-02-18 20:59:43 +00:00
parent 896141b22e
commit a8f0bbe386
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ public class StringLengthValidationListener implements ParameterListener {
value = (String) obj;
isValid = isValid(value);
} catch (ClassCastException cce) {
throw new FormProcessException(cce.getMessage(), cce);
throw new FormProcessException(cce);
}
}