try: a = 1 b = 0 c = a/b print("c is {}".format(c)) except: print("oops ....") print("continue on") raise Exception("Some bad thing happened")