Hi, "catch(Throwable ex)" in some places in StatefulRuleSessionImpl.java class should be replaced with "catch(Exception ex)", since Throwable is the superclass of all exceptions and errors You can use it in a catch clause, but you should never do it! If you use Throwable in a catch clause, it will not only catch all exceptions; it will also catch all errors. Errors are thrown by the JVM to indicate serious problems that are not intended to be handled by an application. Typical examples for that are...
Hi, Will it be possible to add “arg” attributes in <if> tag and then have the method in “leftTerm” be called on those arguments and then the result of that be compared with “righTerm” value. And then the by comparing “leftTerm” with “rightTerm”, return a Boolean “true” or “false” value?</if> <rule-execution-set> <name>RuleExecutionSet1</name> <description>Rule Execution Set</description> <synonymn name="prop" class="org.jruleengine.Clause"></synonymn> <rule name="Rule1" description="if :X is human...