From: Matti Tahvonen Date: Thu, 6 May 2010 15:27:03 +0000 (+0000) Subject: fixes #4649 X-Git-Tag: 6.7.0.beta1~1670^2~13 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7adef9f4ee52b2a5a4364e21edab5596c29c2435;p=vaadin-framework.git fixes #4649 svn changeset:13073/svn branch:6.3 --- 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); } }