org.apache.commons.attributes.CircularDependencyError Maven / Gradle / Ivy
/*
* Copyright 2003-2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.attributes;
import java.util.Iterator;
import java.util.List;
/**
* Thrown when an attribute repository class can't be
* loaded because it resulted in a circular dependency.
*/
public class CircularDependencyError extends RepositoryError {
/**
* Create a new CircularDependencyError.
*
* @param className the name of the class that started it all.
* @param dependencyList a list of the classes that the original
* class depended on, the classes they
* depended on, and so on. The list should
* show the chain of dependencies that resulted
* in the exception being thrown.
*/
public CircularDependencyError (String className, List dependencyList) {
super (className + ":" + listDeps (dependencyList), null);
}
/**
* Joins together the elements of a list with ->
* delimiters. Used to show the sequence that resulted in the circular
* dependency.
*/
private static String listDeps (List dependencyList) {
StringBuffer sb = new StringBuffer ();
Iterator iter = dependencyList.iterator ();
while (iter.hasNext ()) {
sb.append (iter.next ());
if (iter.hasNext ()) {
sb.append (" -> ");
}
}
return sb.toString ();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy