From: Artur Signell Date: Mon, 11 Feb 2013 18:33:15 +0000 (+0200) Subject: Since #10312 Table wraps a conversion exception in a CacheUpdateException X-Git-Tag: 7.0.1~42^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7def7f0ebf70eedfe629f0b8f892a77053d9f6d1;p=vaadin-framework.git Since #10312 Table wraps a conversion exception in a CacheUpdateException Change-Id: Id2772118a673555db21bb8b5f8d6126459eb688e --- diff --git a/uitest/src/com/vaadin/tests/components/table/SetDataSourceWithPropertyIds.java b/uitest/src/com/vaadin/tests/components/table/SetDataSourceWithPropertyIds.java index f6eb893528..5749912f43 100644 --- a/uitest/src/com/vaadin/tests/components/table/SetDataSourceWithPropertyIds.java +++ b/uitest/src/com/vaadin/tests/components/table/SetDataSourceWithPropertyIds.java @@ -4,7 +4,6 @@ import java.io.Serializable; import java.util.ArrayList; import java.util.List; -import com.vaadin.data.Buffered.SourceException; import com.vaadin.data.util.BeanItemContainer; import com.vaadin.server.VaadinRequest; import com.vaadin.shared.ui.MarginInfo; @@ -12,6 +11,7 @@ import com.vaadin.tests.components.AbstractTestUI; import com.vaadin.ui.Button; import com.vaadin.ui.Label; import com.vaadin.ui.Table; +import com.vaadin.ui.Table.CacheUpdateException; public class SetDataSourceWithPropertyIds extends AbstractTestUI { @@ -71,7 +71,7 @@ public class SetDataSourceWithPropertyIds extends AbstractTestUI { table.setContainerDataSource(jobContainer); table.setVisibleColumns(new String[] { "jobId" }); label.setValue("no Exception"); - } catch (SourceException e) { + } catch (CacheUpdateException e) { ArrayList propertyIds = new ArrayList(); propertyIds.add("jobId"); table.setContainerDataSource(jobContainer, propertyIds);