Solved! Go to Solution.
try: #do stuff except 'arcgisscripting.ExecuteError': continue except (differentError1, differentError2): pass
try: #do stuff except 'arcgisscripting.ExecuteError': continue except (differentError1, differentError2): pass
You can either assign a single except routine to multiple named exceptions, or different except routines to different errors.