1 10 package com.hp.hpl.jena.reasoner.rulesys; 11 12 import com.hp.hpl.jena.shared.JenaException; 13 14 21 public class BuiltinException extends JenaException { 22 23 29 public BuiltinException(Builtin builtin, RuleContext context, String message) { 30 super("Error in clause of rule (" + context.getRule().toShortString() + ") " 31 + builtin.getName() + ": " + message); 32 } 33 } 34 35 61 | Popular Tags |