UNPKG

bot-handoff

Version:

Bot hand off module for the Microsoft Bot Framework. It allows you to transfer a customer from talking to a bot to talking to a human.

10 lines (7 loc) 245 B
export class AgentNotInConversationError extends Error { constructor(msg: string) { super(msg); this.name = 'AgentNotInConversationError'; Object.setPrototypeOf(this, AgentNotInConversationError.prototype); } }