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

ai.libs.jaicore.search.algorithms.standard.bestfirst.exceptions.RCNEPathCompletionFailedException Maven / Gradle / Ivy

package ai.libs.jaicore.search.algorithms.standard.bestfirst.exceptions;

public class RCNEPathCompletionFailedException extends Exception {
	public RCNEPathCompletionFailedException(Exception e) {
		super(e);
	}
	
	public RCNEPathCompletionFailedException(String message) {
		super(message);
	}
	
	public RCNEPathCompletionFailedException(String message, Exception e) {
		super(message, e);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy