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

ai.libs.jaicore.graph.NodeNotFoundException Maven / Gradle / Ivy

There is a newer version: 0.2.7
Show newest version
package ai.libs.jaicore.graph;

public class NodeNotFoundException extends Exception {
	/**
	 * Generated Serial UID for extending Java API class Exception
	 */
	private static final long serialVersionUID = -8334959000362299402L;
	private final transient Object item;

	public NodeNotFoundException(final Object item) {
		super();
		this.item = item;
	}

	public Object getItem() {
		return this.item;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy