Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

one line try except python

try:
	#create an exception
except:
	print('Exception occured')	
    
    
try:
	#create an exception
except Exception as e:
	print('Exception '+str(e)+' occured')

 
PREVIOUS NEXT
Tagged: #line #python
ADD COMMENT
Topic
Name
7+9 =