Advertisement
horozov86

Exceptions

Jun 2nd, 2023
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. class MustContainAtSymbolError(Exception):
  2.     pass
  3.  
  4. class NameTooShortError(Exception):
  5.     pass
  6.  
  7. class InvalidDomainError(Exception):
  8.     pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement