0
Exceptions and raises
What are the differences between exceptions and raises?
1 Réponse
+ 3
raise is for raising intentional errors. usefull for custom errors ones you might make.
except is for catching unintentional errors. maybe for something random like user input.
all of these are paired with try.