Size: 833
Comment: don't *ever* use a too general exception class, CatchWhatYouCanHandle
|
Size: 875
Comment: To do: Write about how to capture catch-all "Exception"
|
Deletions are marked like this. | Additions are marked like this. |
Line 30: | Line 30: |
Give example of multiple excepts. Handling multiple excepts in one line. | Give example of multiple excepts. Handling multiple excepts in one line. Catch-all "Exception" exception handling. |
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:
To Write About...
Give example of IOError, and interpreting the IOError code.
Give example of multiple excepts. Handling multiple excepts in one line. Catch-all "Exception" exception handling.
Show how to use "else" and "finally".
Show how to continue with a "raise".
See Also:
WritingExceptionClasses, TracebackModule, CoupleLeapingWithLooking