de.materna.jdec.exceptions.ImportException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdec Show documentation
Show all versions of jdec Show documentation
🤔 Library that offers a unified interface to Drools and Java decisions
package de.materna.jdec.exceptions;
import de.materna.jdec.beans.ImportResult;
import org.kie.api.builder.Message;
import java.util.List;
public class ImportException extends RuntimeException {
private ImportResult result;
public ImportException() {
}
public ImportException(ImportResult result) {
this.result = result;
}
public ImportResult getResult() {
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy