All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.andromedaioc.exception.CircularDependencyException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy