From a8f0bbe3868ae45d7c0ad25676a170ca88a8273a Mon Sep 17 00:00:00 2001 From: tosmers Date: Wed, 18 Feb 2015 20:59:43 +0000 Subject: [PATCH] =?UTF-8?q?[UPDATE]=20In=20der=20Klasse=20ccm-core/src/com?= =?UTF-8?q?/arsdigita/bebop/parameters/StringLengthValidationListener.java?= =?UTF-8?q?=20die=20FormProcessException=20in=20der=20Zeile=2074=20umgebau?= =?UTF-8?q?t,=20indem=20die=20Exception=20an=20die=20FormProcessException?= =?UTF-8?q?=20=C3=BCbergeben=20wird.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.libreccm.org/ccm/trunk@3239 8810af33-2d31-482b-a856-94f89814c4df --- .../bebop/parameters/StringLengthValidationListener.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }