Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/ds/resolver/CircularityException.java')
-rw-r--r--bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/ds/resolver/CircularityException.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/ds/resolver/CircularityException.java b/bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/ds/resolver/CircularityException.java
deleted file mode 100644
index 5d5917350..000000000
--- a/bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/ds/resolver/CircularityException.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005 IBM Corporation.
- * 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:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.equinox.ds.resolver;
-
-import org.eclipse.equinox.ds.model.ComponentConfiguration;
-
-/**
- *
- */
-class CircularityException extends Exception {
-
- /**
- * Eclipse-generated <code>serialVersionUID</code>
- */
- private static final long serialVersionUID = 8249461007142713618L;
-
- private ComponentConfiguration componentConfiguration;
-
- CircularityException(ComponentConfiguration componentConfiguration) {
- this.componentConfiguration = componentConfiguration;
- }
-
- ComponentConfiguration getCircularDependency() {
- return componentConfiguration;
- }
-
-}

Back to the top