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

org.drools.compiler.RuleBuildError Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
package org.drools.compiler;

import org.drools.lang.descr.BaseDescr;
import org.drools.rule.Rule;

public class RuleBuildError extends DescrBuildError {
    private final Rule rule;

    public RuleBuildError(final Rule rule,
                          final BaseDescr descr,
                          final Object object,
                          final String message) {
        super( descr,
               descr,
               object,
               message );
        this.rule = rule;
    }

    public Rule getRule() {
        return this.rule;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy