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

org.tbwork.anole.loader.exceptions.CircularDependencyException Maven / Gradle / Ivy

The newest version!
package org.tbwork.anole.loader.exceptions;
 
 
public class CircularDependencyException extends RuntimeException {
 
	public CircularDependencyException()
    {
		super("The config (key = %s) can not rely on itself directly or mediately such us: a = #{a}");
    }
	
    public CircularDependencyException(String key)
    {
    	super(String.format( "The config (key = %s) can not rely on itself directly or mediately such us: a = #{a}", key));
    }
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy