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

net.lenni0451.optconfig.exceptions.CircularDependencyException Maven / Gradle / Ivy

Go to download

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