[docs]class CountryCodeException(Exception):
"""
Country Code is not present in the Phone Number
"""
pass
[docs]class CallTimeException(Exception):
"""
Wait time is too short for WhatsApp Web to Open
"""
pass
[docs]class InternetException(Exception):
"""
Host machine is not connected to the Internet or the connection Speed is Slow
"""
pass
[docs]class InvalidPhoneNumber(Exception):
"""
Phone number given is invalid
"""
pass
[docs]class UnsupportedEmailProvider(Exception):
"""
Email provider used to send the Email is not supported
"""
pass
[docs]class UnableToAccessApi(Exception):
"""unable to access pywhatkit api"""
pass