Brett Cannon | bf36409 | 2006-03-01 04:25:17 +0000 | [diff] [blame] | 1 | BaseException |
| 2 | +-- SystemExit |
| 3 | +-- KeyboardInterrupt |
| 4 | +-- Exception |
| 5 | +-- GeneratorExit |
| 6 | +-- StopIteration |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame^] | 7 | +-- ArithmeticError |
| 8 | | +-- FloatingPointError |
| 9 | | +-- OverflowError |
| 10 | | +-- ZeroDivisionError |
| 11 | +-- AssertionError |
| 12 | +-- AttributeError |
| 13 | +-- EnvironmentError |
| 14 | | +-- IOError |
| 15 | | +-- OSError |
| 16 | | +-- WindowsError (Windows) |
| 17 | | +-- VMSError (VMS) |
| 18 | +-- EOFError |
| 19 | +-- ImportError |
| 20 | +-- LookupError |
| 21 | | +-- IndexError |
| 22 | | +-- KeyError |
| 23 | +-- MemoryError |
| 24 | +-- NameError |
| 25 | | +-- UnboundLocalError |
| 26 | +-- ReferenceError |
| 27 | +-- RuntimeError |
| 28 | | +-- NotImplementedError |
| 29 | +-- SyntaxError |
| 30 | | +-- IndentationError |
| 31 | | +-- TabError |
| 32 | +-- SystemError |
| 33 | +-- TypeError |
| 34 | +-- ValueError |
| 35 | | +-- UnicodeError |
| 36 | | +-- UnicodeDecodeError |
| 37 | | +-- UnicodeEncodeError |
| 38 | | +-- UnicodeTranslateError |
Brett Cannon | bf36409 | 2006-03-01 04:25:17 +0000 | [diff] [blame] | 39 | +-- Warning |
| 40 | +-- DeprecationWarning |
| 41 | +-- PendingDeprecationWarning |
| 42 | +-- RuntimeWarning |
| 43 | +-- SyntaxWarning |
| 44 | +-- UserWarning |
| 45 | +-- FutureWarning |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 46 | +-- ImportWarning |
Thomas Wouters | 00ee7ba | 2006-08-21 19:07:27 +0000 | [diff] [blame] | 47 | +-- UnicodeWarning |