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) 263 B
export class CustomerAlreadyConnectedException extends Error { constructor(msg: string) { super(msg); this.name = 'CustomerAlreadyConnectedException'; Object.setPrototypeOf(this, CustomerAlreadyConnectedException.prototype); } }