UNPKG

eliza-core

Version:

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

7 lines (6 loc) 228 B
import { ScriptInterpretingError } from './base-error'; export class GotoLostException extends ScriptInterpretingError { constructor(gotoRule) { super(`The destination of goto could not found: ${gotoRule}`); } }