X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.client.ui%2Fsrc%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2Feditors%2FProcessBuilderPage.java;h=638d3a2d238280e704dab5a7305d4ebd67208b0c;hb=f8a9ca2e0faabe1e0cdcd3537da34e02a0e55f57;hp=07817cc2a623e7e5e1fb3019c86ad4dc43c724c7;hpb=2db415932b071525adb52c6374e021174512a924;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.client.ui/src/org/argeo/slc/client/ui/editors/ProcessBuilderPage.java b/org.argeo.slc.client.ui/src/org/argeo/slc/client/ui/editors/ProcessBuilderPage.java index 07817cc2a..638d3a2d2 100644 --- a/org.argeo.slc.client.ui/src/org/argeo/slc/client/ui/editors/ProcessBuilderPage.java +++ b/org.argeo.slc.client.ui/src/org/argeo/slc/client/ui/editors/ProcessBuilderPage.java @@ -32,17 +32,16 @@ import javax.jcr.observation.ObservationManager; import javax.jcr.query.Query; import javax.jcr.query.QueryManager; -import org.argeo.ArgeoException; import org.argeo.eclipse.ui.jcr.AsyncUiEventListener; import org.argeo.jcr.JcrUtils; import org.argeo.slc.SlcException; +import org.argeo.slc.SlcNames; +import org.argeo.slc.SlcTypes; import org.argeo.slc.client.ui.SlcImages; -import org.argeo.slc.core.execution.PrimitiveAccessor; -import org.argeo.slc.core.execution.PrimitiveUtils; +import org.argeo.slc.primitive.PrimitiveAccessor; +import org.argeo.slc.primitive.PrimitiveUtils; import org.argeo.slc.execution.ExecutionProcess; import org.argeo.slc.jcr.SlcJcrUtils; -import org.argeo.slc.jcr.SlcNames; -import org.argeo.slc.jcr.SlcTypes; import org.eclipse.jface.viewers.CellEditor; import org.eclipse.jface.viewers.ColumnLabelProvider; import org.eclipse.jface.viewers.ColumnViewer; @@ -151,7 +150,7 @@ public class ProcessBuilderPage extends FormPage implements SlcNames { addInitialFlows(); } catch (RepositoryException e) { - throw new ArgeoException("Cannot create form content", e); + throw new SlcException("Cannot create form content", e); } } @@ -415,7 +414,7 @@ public class ProcessBuilderPage extends FormPage implements SlcNames { try { node.remove(); } catch (RepositoryException e) { - throw new ArgeoException("Cannot remove " + node, e); + throw new SlcException("Cannot remove " + node, e); } } flowsViewer.refresh(); @@ -432,7 +431,7 @@ public class ProcessBuilderPage extends FormPage implements SlcNames { flowsViewer.refresh(); formPart.markDirty(); } catch (RepositoryException e) { - throw new ArgeoException("Cannot remove flows from " + processNode, + throw new SlcException("Cannot remove flows from " + processNode, e); } }