eliza-core
Version:
A rendition of ELIZA program engine by Weizenbaum sharable for all javascript environments
11 lines (10 loc) • 413 B
JavaScript
import * as tslib_1 from "tslib";
import { ScriptInterpretingError } from './base-error';
var UnknownRuleException = (function (_super) {
tslib_1.__extends(UnknownRuleException, _super);
function UnknownRuleException(problemStr) {
return _super.call(this, "Unknown Rule: " + problemStr) || this;
}
return UnknownRuleException;
}(ScriptInterpretingError));
export { UnknownRuleException };