Return to Snippet

Revision: 21877
at December 22, 2009 15:38 by magicrebirth


Initial Code
--- catch:

try:
    generateSomeException()
except Exception, e: # Mother of all exceptions
    print e

--- throw:

try:
    raise Exception, "Something is rotten in the state of Denmark"
except e:
    print e

Initial URL


Initial Description


Initial Title
Catching and throwing exceptions

Initial Tags


Initial Language
Python