[UPDATE]
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-94f89814c4dfmaster
parent
896141b22e
commit
a8f0bbe386
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue