Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/email_validator/exceptions.py: 86%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

7 statements  

1class EmailNotValidError(ValueError): 

2 """Parent class of all exceptions raised by this module.""" 

3 pass 

4 

5 

6class EmailSyntaxError(EmailNotValidError): 

7 """Exception raised when an email address fails validation because of its form.""" 

8 pass 

9 

10 

11class EmailUndeliverableError(EmailNotValidError): 

12 """Exception raised when an email address fails validation because its domain name does not appear deliverable.""" 

13 pass