Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2013-05-31 17:00:12 +0000
committerEike Stepper2013-05-31 17:00:12 +0000
commit88f71abfcc97e16eb21f8ee898ee1f652c20f20d (patch)
treeed76874771b8b024afb549294ac8a3871e5f5692
parente2c81e65ab98348af2644d659bc707b30851f2ca (diff)
downloadcdo-88f71abfcc97e16eb21f8ee898ee1f652c20f20d.tar.gz
cdo-88f71abfcc97e16eb21f8ee898ee1f652c20f20d.tar.xz
cdo-88f71abfcc97e16eb21f8ee898ee1f652c20f20d.zip
[409574] Provide a meaningful CommitException hierarchy
https://bugs.eclipse.org/bugs/show_bug.cgi?id=409574
-rw-r--r--plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ContainmentCycleDetectedException.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ContainmentCycleDetectedException.java b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ContainmentCycleDetectedException.java
index 66b18b8d92..642743caee 100644
--- a/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ContainmentCycleDetectedException.java
+++ b/plugins/org.eclipse.emf.cdo.server/src/org/eclipse/emf/cdo/server/ContainmentCycleDetectedException.java
@@ -11,6 +11,7 @@
package org.eclipse.emf.cdo.server;
import org.eclipse.emf.cdo.transaction.CDOTransaction;
+import org.eclipse.emf.cdo.util.ContainmentCycleException;
/**
* An unchecked exception that can thrown from a commit operation that is based on stale information
@@ -22,7 +23,9 @@ import org.eclipse.emf.cdo.transaction.CDOTransaction;
*
* @author Eike Stepper
* @since 4.0
+ * @deprecated As of 4.2 no longer used in the server; replaced by {@link ContainmentCycleException} in the client.
*/
+@Deprecated
public class ContainmentCycleDetectedException extends IllegalStateException
{
private static final long serialVersionUID = 1L;

Back to the top