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

com.puresoltechnologies.graphs.trees.TreeException Maven / Gradle / Ivy

package com.puresoltechnologies.graphs.trees;

/**
 * This exception is thrown if a tree function or action is not suitable or
 * invalid.
 * 
 * @author Rick-Rainer Ludwig
 * 
 */
public class TreeException extends Exception {

	private static final long serialVersionUID = 5048301833347363159L;

	public TreeException(String message) {
		super(message);
	}

	public TreeException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy