* Loads a set of decision tables from the given input stream.
* @param dt Source of Decision Tables in XML.
* @throws RulesException
*/
public void loaddt(IRSession session, InputStream dt) throws RulesException {
DTLoader loader = new DTLoader(session, this);
try {
GenericXMLParser.load(dt, loader);
}catch (Exception e) {
throw new RulesException("Parsing Error","Decision Table Loader",e.toString());
}