UNPKG

eliza-core

Version:

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

7 lines (6 loc) 208 B
import { ScriptInterpretingError } from './base-error'; export class UnknownRuleException extends ScriptInterpretingError { constructor(problemStr) { super(`Unknown Rule: ${problemStr}`); } }