UNPKG

eliza-core

Version:

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

7 lines (6 loc) 217 B
import { ScriptInterpretingError } from './base-error'; export class DuplicateAnnotateException extends ScriptInterpretingError { constructor(annotate) { super(`Annotate Duplicated: ${annotate}`); } }