8cf05f1d9f
Ability to edit contact information in conversation sidebar Co-authored-by: Sojan <sojan@pepalo.com>
7 lines
182 B
JavaScript
7 lines
182 B
JavaScript
export class DuplicateContactException extends Error {
|
|
constructor(data) {
|
|
super('DUPLICATE_CONTACT');
|
|
this.data = data;
|
|
this.name = 'DuplicateContactException';
|
|
}
|
|
}
|