UNPKG

eliza-core

Version:

A rendition of ELIZA program engine by Weizenbaum sharable for all javascript environments

11 lines (10 loc) 438 B
import * as tslib_1 from "tslib"; import { ScriptInterpretingError } from './base-error'; var NoMentionDefException = (function (_super) { tslib_1.__extends(NoMentionDefException, _super); function NoMentionDefException(problemTag) { return _super.call(this, "Could not fnd syn list for [" + problemTag + "]") || this; } return NoMentionDefException; }(ScriptInterpretingError)); export { NoMentionDefException };