Can someone explain what raise does? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can someone explain what raise does?

14th Jul 2016, 9:06 AM
Danijel
Danijel - avatar
1 Answer
+ 1
It gives you the ability to make a custom error and then raise it. It would be used in conjuction with a try/except statement. Eg: try: print("Hi") except: raise MyError("Whoops!")
19th Jul 2016, 1:30 AM
jj Fer
jj Fer - avatar