Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

check type of exception

try:
	# the code for which you want to catch the exception 
except Exception as err:
	print(err)
 
PREVIOUS NEXT
Tagged: #check #type #exception
ADD COMMENT
Topic
Name
4+6 =