how to do error trapping on a html exist python code example
Example 1: python raise error exit
sys.exit('My error message')
print >>sys.stderr, "fatal error"
print("fatal error", file=sys.stderr)
raise SystemExit('error in code want to exit')
try:
raise SystemExit('error in code want to exit')
except:
print("program is still open")
Example 2: exception variable properties python
>>> try:
... raise Exception('spam', 'eggs')
... except Exception as inst:
... print(type(inst))
... print(inst.args)
... print(inst)
...
... x, y = inst.args
... print('x =', x)
... print('y =', y)
...
<class 'Exception'>
('spam', 'eggs')
('spam', 'eggs')
x = spam
y = eggs