ai.libs.jaicore.graph.NodeNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaicore-basic Show documentation
Show all versions of jaicore-basic Show documentation
Fundamental utils required by many other starlibs projects.
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