X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.cms%2Fsrc%2Forg%2Fargeo%2Fcms%2Ftabular%2FJcrTabularRowIterator.java;h=23bc8e83d116150ed08d275e03ce998c0c6a105f;hb=215480a865603e0090c43114541441ac1586b379;hp=e749765cb13ef61c1359b785dafc5eca3f895e7f;hpb=afd31256550ee8fe257a43558cfd07dfcf2e5c04;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.cms/src/org/argeo/cms/tabular/JcrTabularRowIterator.java b/org.argeo.cms/src/org/argeo/cms/tabular/JcrTabularRowIterator.java index e749765cb..23bc8e83d 100644 --- a/org.argeo.cms/src/org/argeo/cms/tabular/JcrTabularRowIterator.java +++ b/org.argeo.cms/src/org/argeo/cms/tabular/JcrTabularRowIterator.java @@ -18,7 +18,7 @@ import org.argeo.api.tabular.TabularColumn; import org.argeo.api.tabular.TabularRow; import org.argeo.api.tabular.TabularRowIterator; import org.argeo.cms.ArgeoTypes; -import org.argeo.jcr.ArgeoJcrException; +import org.argeo.jcr.JcrException; import org.argeo.util.CsvParser; /** Iterates over the rows of a {@link ArgeoTypes#ARGEO_TABLE} node. */ @@ -86,7 +86,7 @@ public class JcrTabularRowIterator implements TabularRowIterator { thread.start(); } } catch (RepositoryException e) { - throw new ArgeoJcrException("Cannot read table " + tableNode, e); + throw new JcrException("Cannot read table " + tableNode, e); } }