eliza-core
Version:
A rendition of ELIZA program engine by Weizenbaum sharable for all javascript environments
10 lines (9 loc) • 350 B
JavaScript
import * as tslib_1 from "tslib";
var ScriptInterpretingError = (function (_super) {
tslib_1.__extends(ScriptInterpretingError, _super);
function ScriptInterpretingError(msg) {
return _super.call(this, msg || 'ScriptInterpretingError') || this;
}
return ScriptInterpretingError;
}(Error));
export { ScriptInterpretingError };