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

org.openl.rules.project.instantiation.RulesInstantiationException Maven / Gradle / Ivy

package org.openl.rules.project.instantiation;

/**
 * Appears during the compilation or instantiation of rules.
 * 
 * @author PUdalau
 */
public class RulesInstantiationException extends Exception {
    private static final long serialVersionUID = -9185342823934771219L;

    public RulesInstantiationException(String message) {
        super(message);
    }

    public RulesInstantiationException(String message, Throwable cause) {
        super(message, cause);
    }

    public RulesInstantiationException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy