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

de.materna.jdec.exceptions.ImportException Maven / Gradle / Ivy

Go to download

🤔 Library that offers a unified interface to Drools and Java decisions

There is a newer version: 2.9.15
Show newest version
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