Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/util/ReferentialIntegrityException.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/util/ReferentialIntegrityException.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/util/ReferentialIntegrityException.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/util/ReferentialIntegrityException.java
index 01cd28b283..b8ae2e2fcb 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/util/ReferentialIntegrityException.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/util/ReferentialIntegrityException.java
@@ -16,17 +16,17 @@ import java.util.List;
/**
* A {@link CommitException commit exception} that indicates referential integrity problems detected by the server.
- *
+ *
* @author Eike Stepper
* @since 4.0
* @noextend This interface is not intended to be extended by clients.
* @noinstantiate This class is not intended to be instantiated by clients.
*/
-public class ReferentialIntegrityException extends CommitException
+public class ReferentialIntegrityException extends DataIntegrityException
{
private static final long serialVersionUID = 1L;
- private List<CDOObjectReference> xRefs;
+ private transient List<CDOObjectReference> xRefs;
public ReferentialIntegrityException(String msg, List<CDOObjectReference> xRefs)
{

Back to the top