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