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

org.drools.verifier.UnknownDescriptionException Maven / Gradle / Ivy

There is a newer version: 9.44.0.Final
Show newest version
package org.drools.verifier;

import org.drools.lang.descr.BaseDescr;

/**
 * This exception is thrown when verifier tries to handle a descr that it is not
 * familiar with.
 * 
 * @author trikkola
 */
public class UnknownDescriptionException extends Exception {
	private static final long serialVersionUID = 6636873223159735829L;

	final BaseDescr descr;

	public UnknownDescriptionException(BaseDescr descr) {
		super("Descr ( " + descr + " ) is unknown to drools verifier.");
		this.descr = descr;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy