
exception.TreeInsertionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexible-tree Show documentation
Show all versions of flexible-tree Show documentation
Library for generating permutation of given value domains
The newest version!
package exception;
/**
* Thrown when nodes could not be added to a tree
*/
public class TreeInsertionException extends AbstractCustomException {
public TreeInsertionException(Exception exception) {
super(exception);
}
public TreeInsertionException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy