net.lenni0451.optconfig.exceptions.CircularDependencyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optconfig Show documentation
Show all versions of optconfig Show documentation
A java library for parsing yaml config files with support for comments and default values
The newest version!
package net.lenni0451.optconfig.exceptions;
/**
* An exception that is thrown when a circular option dependency is detected.
* e.g. {@code A -> B -> A}
* This also works over multiple options, e.g. {@code A -> B -> C -> A}
*/
public class CircularDependencyException extends RuntimeException {
public CircularDependencyException(final String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy