Size: 2283
Comment: Okay; Factored discussion into page.
|
Size: 2553
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 46: | Line 46: |
''umm. that snippet doesn't actually catch all exceptions, though... here a more robust solution:'' {{{ #!python import sys try: untrusted.execute() except: # catch *all* exceptions e = sys.exc_info()[1] write_to_page( "<p>Error: %s</p>" % e ) }}} |
Handling Exceptions
The simplest way to handle exceptions is with a "try-except" block:
If you wanted to examine the exception from code, you could have:
General Error Catching
Sometimes, you want to catch all errors that could possibly be generated, but usually you don't.In most cases, you want to be as specific as possible (CatchWhatYouCanHandle). In the first example above, if you were using a catch-all exception clause and a user presses Ctrl-C, generating a KeyboardInterrupt, you don't want the program to print "divide by zero".
However, there are some situations where it's best to catch all errors.
For example, suppose you are writing an extension module to a web service. You want the error information to output the output web page, and the server to continue to run, if at all possible. But you have no idea what kind of errors you might have put in your code.
In situations like these, you may want to code something like this:
1 try:
2 untrusted.execute()
3 except Exception, e:
4 write_to_page( "<p>Error: %s</p>" % str(e) )
MoinMoin software is a good example of where this is done. If you write MoinMoin extension macros, and trigger an error, MoinMoin will give you a detailed report of your error and the chain of events leading up to it.
umm. that snippet doesn't actually catch all exceptions, though... here a more robust solution:
Finding Specific Exception Names
Standard exceptions that can be raised are detailed at:
Look to class documentation to find out what exceptions a given class can raise.
See Also:
WritingExceptionClasses, TracebackModule, CoupleLeapingWithLooking
To Write About...
- Give example of IOError, and interpreting the IOError code.
- Give example of multiple excepts. Handling multiple excepts in one line.
- Show how to use "else" and "finally".
- Show how to continue with a "raise".
Questions
(none)