Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

raising custom exception python

class UnderAge(Exception):
   pass
 
def verify_age(age):
   if int(age) < 18:
       raise UnderAge("You must be at least 18 years old")
   else:
       print('Age: '+str(age))
 
# main program
verify_age(23)  # won't raise exception
verify_age(17)  # will raise exception
Source by www.journaldev.com #
 
PREVIOUS NEXT
Tagged: #raising #custom #exception #python
ADD COMMENT
Topic
Name
2+1 =