eliza-core
Version:
A rendition of ELIZA program engine by Weizenbaum sharable for all javascript environments
11 lines (10 loc) • 421 B
JavaScript
import * as tslib_1 from "tslib";
import { ScriptInterpretingError } from './base-error';
var GotoLostException = (function (_super) {
tslib_1.__extends(GotoLostException, _super);
function GotoLostException(gotoRule) {
return _super.call(this, "The destination of goto could not found: " + gotoRule) || this;
}
return GotoLostException;
}(ScriptInterpretingError));
export { GotoLostException };