mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
Ability to edit contact information in conversation sidebar Co-authored-by: Sojan <sojan@pepalo.com>
8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
export class DuplicateContactException extends Error {
|
|
constructor(data) {
|
|
super('DUPLICATE_CONTACT');
|
|
this.data = data;
|
|
this.name = 'DuplicateContactException';
|
|
}
|
|
}
|