File size: 298 Bytes
4327358
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
export class ChatIDNotFoundForContactError extends Error {
  constructor(public sender: any) {
    super('Chat ID not found');
  }
}

export class PhoneNumberNotFoundInWhatsAppError extends Error {
  constructor(public phone: any) {
    super(`Phone number not found in WhatsApp: ${phone}`);
  }
}