diff --git a/ccm-core/src/com/arsdigita/bebop/parameters/StringLengthValidationListener.java b/ccm-core/src/com/arsdigita/bebop/parameters/StringLengthValidationListener.java index ecbc9cdc8..05b9c04bb 100755 --- a/ccm-core/src/com/arsdigita/bebop/parameters/StringLengthValidationListener.java +++ b/ccm-core/src/com/arsdigita/bebop/parameters/StringLengthValidationListener.java @@ -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); } }