132133134135136137138139
builder.setArgumentMetadataSource(argumentMetadataSource); try { // TODO Change everything to DroolsRuntimeException return builder.buildRule(rule, pojo); } catch (DroolsException e) { throw new DroolsRuntimeException(e); } }
434445464748495051
public Object execute(Callback callback) { synchronized(getWorkingMemory()) { try { return callback.doInWorkingMemory(getWorkingMemory()); } catch (DroolsException e) { throw new DroolsRuntimeException(e); } } }