From 7adef9f4ee52b2a5a4364e21edab5596c29c2435 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Thu, 6 May 2010 15:27:03 +0000 Subject: [PATCH] fixes #4649 svn changeset:13073/svn branch:6.3 --- src/com/vaadin/data/Property.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/vaadin/data/Property.java b/src/com/vaadin/data/Property.java index ab69411885..5c1347bfa8 100644 --- a/src/com/vaadin/data/Property.java +++ b/src/com/vaadin/data/Property.java @@ -187,7 +187,7 @@ public interface Property extends Serializable { * The cause of the the conversion failure */ public ConversionException(Throwable cause) { - super(cause.toString()); + super(cause); } } -- 2.39.5