Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/util/CommitIntegrityException.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/util/CommitIntegrityException.java88
1 files changed, 44 insertions, 44 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/util/CommitIntegrityException.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/util/CommitIntegrityException.java
index 35024d6827..6466967f56 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/util/CommitIntegrityException.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/cdo/util/CommitIntegrityException.java
@@ -1,44 +1,44 @@
-/*
- * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Caspar De Groot - initial API and implementation
- */
-package org.eclipse.emf.cdo.util;
-
-import org.eclipse.emf.cdo.transaction.CDOTransaction;
-
-import org.eclipse.emf.ecore.EObject;
-
-import java.util.Set;
-
-/**
- * A {@link CommitException commit exception} that indicates referential integrity problems with
- * {@link CDOTransaction#setCommittables(Set) partial commits} before the server is contacted.
- *
- * @author Caspar De Groot
- * @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 CommitIntegrityException extends CommitException
-{
- private static final long serialVersionUID = 1L;
-
- private Set<? extends EObject> missingObjects;
-
- public CommitIntegrityException(String msg, Set<? extends EObject> missingObjects)
- {
- super(msg);
- this.missingObjects = missingObjects;
- }
-
- public Set<? extends EObject> getMissingObjects()
- {
- return missingObjects;
- }
-}
+/*
+ * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Caspar De Groot - initial API and implementation
+ */
+package org.eclipse.emf.cdo.util;
+
+import org.eclipse.emf.cdo.transaction.CDOTransaction;
+
+import org.eclipse.emf.ecore.EObject;
+
+import java.util.Set;
+
+/**
+ * A {@link CommitException commit exception} that indicates referential integrity problems with
+ * {@link CDOTransaction#setCommittables(Set) partial commits} before the server is contacted.
+ *
+ * @author Caspar De Groot
+ * @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 CommitIntegrityException extends CommitException
+{
+ private static final long serialVersionUID = 1L;
+
+ private Set<? extends EObject> missingObjects;
+
+ public CommitIntegrityException(String msg, Set<? extends EObject> missingObjects)
+ {
+ super(msg);
+ this.missingObjects = missingObjects;
+ }
+
+ public Set<? extends EObject> getMissingObjects()
+ {
+ return missingObjects;
+ }
+}

Back to the top