Posts by jgritty • 164 points
1 post
-
5
votes1
answer102
viewsA: Exceptions.py file
This is the document, but in English. You can create custom exceptions. class MeuError(Exception): # derivar de Exception pass Now, you can raise the exception raise MeuError or raise…