net.sf.andromedaioc.exception.CircularDependencyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of andromeda-ioc Show documentation
Show all versions of andromeda-ioc Show documentation
Inversion of Control Framework for Android
The newest version!
package net.sf.andromedaioc.exception;
import net.sf.andromedaioc.model.beans.ReferenceKey;
public class CircularDependencyException extends RuntimeException {
public CircularDependencyException(ReferenceKey... keys) {
super("Circular dependency found for bean(s) with id(s) " + keys);
}
}